├── .dockerignore ├── .git-expand-header ├── .gitattributes ├── .github └── workflows │ ├── appimage10.yml │ ├── appimage7.yml │ ├── appimage8.yml │ ├── appimage9.yml │ ├── canary-matrix.yml │ ├── main-aarch64.yml │ ├── main-macos.yml │ └── main.yml ├── .gitignore ├── INSTALL ├── INSTALL_MacOS.md ├── LICENSE ├── Makefile ├── README.Tcl ├── README.md ├── TODO ├── VERSION ├── appimage ├── 7 │ ├── Dockerfile │ ├── Makefile │ └── README.md ├── 8 │ ├── Dockerfile │ ├── Makefile │ └── README.md ├── 9 │ ├── Dockerfile │ ├── Makefile │ └── README.md ├── 10 │ ├── Dockerfile │ ├── Makefile │ └── README.md ├── .gitignore └── rsc │ ├── AppRun │ ├── magic.desktop │ ├── magic.svg │ └── version_check.tcl ├── bplane ├── Makefile ├── README ├── bpBins.c ├── bpDump.c ├── bpEnum.c ├── bpEnum.h ├── bpMain.c ├── bpOpaque.h ├── bpStat.c ├── bpTest.c ├── bpUtils.c ├── bplane.h └── bplaneInt.h ├── calma ├── CalmaRdcl.c ├── CalmaRdio.c ├── CalmaRdpt.c ├── CalmaRead.c ├── CalmaWrite.c ├── CalmaWriteZ.c ├── Makefile ├── calma.h └── calmaInt.h ├── cif ├── CIFgen.c ├── CIFhier.c ├── CIFint.h ├── CIFmain.c ├── CIFrdcl.c ├── CIFrdpoly.c ├── CIFrdpt.c ├── CIFrdtech.c ├── CIFrdutils.c ├── CIFread.h ├── CIFsee.c ├── CIFtech.c ├── CIFwrite.c ├── Makefile └── cif.h ├── cmwind ├── CMWcmmnds.c ├── CMWmain.c ├── CMWrgbhsv.c ├── CMWundo.c ├── Makefile └── cmwind.h ├── commands ├── CmdAB.c ├── CmdAuto.c ├── CmdCD.c ├── CmdE.c ├── CmdFI.c ├── CmdLQ.c ├── CmdRS.c ├── CmdSubrs.c ├── CmdTZ.c ├── CmdWizard.c ├── Makefile └── commands.h ├── configure ├── database ├── DBbound.c ├── DBcell.c ├── DBcellbox.c ├── DBcellcopy.c ├── DBcellname.c ├── DBcellsel.c ├── DBcellsrch.c ├── DBcellsubr.c ├── DBconnect.c ├── DBcount.c ├── DBexpand.c ├── DBio.c ├── DBlabel.c ├── DBlabel2.c ├── DBpaint.c ├── DBpaint2.c ├── DBprop.c ├── DBtcontact.c ├── DBtech.c ├── DBtechname.c ├── DBtechtype.c ├── DBtiles.c ├── DBtimestmp.c ├── DBtpaint.c ├── DBtpaint2.c ├── DBundo.c ├── Makefile ├── arrayinfo.h ├── database.h.in ├── databaseInt.h └── fonts.h ├── dbwind ├── DBWbuttons.c ├── DBWcommands.c ├── DBWdisplay.c ├── DBWelement.c ├── DBWfdback.c ├── DBWhlights.c ├── DBWprocs.c ├── DBWtools.c ├── DBWundo.c ├── Makefile ├── dbwind.h └── dbwtech.h ├── debug ├── Makefile ├── debug.h ├── debugFlags.c └── hist.c ├── doc ├── Makefile ├── html │ ├── Makefile │ ├── addcommandentry.html │ ├── addpath.html │ ├── antennacheck.html │ ├── archive.html │ ├── array.html │ ├── box.html │ ├── calma.html │ ├── caption.html │ ├── cellmanager.html │ ├── cellname.html │ ├── cellsearch.html │ ├── center.html │ ├── changetool.html │ ├── channels.html │ ├── cif.html │ ├── clockwise.html │ ├── closewindow.html │ ├── closewrapper.html │ ├── color │ │ ├── color.html │ │ ├── load.html │ │ ├── pushbutton.html │ │ └── save.html │ ├── commands.html │ ├── commands.list │ ├── contact.html │ ├── copy.html │ ├── corner.html │ ├── crash.html │ ├── crashbackups.html │ ├── crosshair.html │ ├── cursor.html │ ├── def.html │ ├── delete.html │ ├── deletecommandentry.html │ ├── direction.html │ ├── display.html │ ├── distance.html │ ├── down.html │ ├── drc.html │ ├── drop.html │ ├── dump.html │ ├── edit.html │ ├── element.html │ ├── erase.html │ ├── expand.html │ ├── ext.html │ ├── ext2sim.html │ ├── ext2spice.html │ ├── extract.html │ ├── extresist.html │ ├── feedback.html │ ├── fill.html │ ├── findbox.html │ ├── findlabel.html │ ├── flatten.html │ ├── flush.html │ ├── garoute.html │ ├── gds.html │ ├── get.html │ ├── getcell.html │ ├── getnode.html │ ├── goto.html │ ├── graphics │ │ ├── blpaper.gif │ │ ├── cellmgr.gif │ │ ├── cif_see.gif │ │ ├── corner1.gif │ │ ├── corner2.gif │ │ ├── email_address.png │ │ ├── line1.gif │ │ ├── magic_OGL_sm.gif │ │ ├── magic_title8_3.gif │ │ ├── magic_title8_3.png │ │ ├── techmgr.gif │ │ ├── toolbar.gif │ │ └── writeall.gif │ ├── grid.html │ ├── help.html │ ├── identify.html │ ├── imacro.html │ ├── initialize.html │ ├── instance.html │ ├── invoke.html │ ├── iroute.html │ ├── irsim.html │ ├── label.html │ ├── lef.html │ ├── load.html │ ├── locking.html │ ├── logcommands.html │ ├── macro.html │ ├── maketoolbar.html │ ├── measure.html │ ├── move.html │ ├── netlist.html │ ├── netlist │ │ ├── add.html │ │ ├── cleanup.html │ │ ├── cull.html │ │ ├── dnet.html │ │ ├── dterm.html │ │ ├── extract.html │ │ ├── find.html │ │ ├── flush.html │ │ ├── joinnets.html │ │ ├── netlist.html │ │ ├── print.html │ │ ├── pushbutton.html │ │ ├── ripup.html │ │ ├── savenetlist.html │ │ ├── shownet.html │ │ ├── showterms.html │ │ ├── trace.html │ │ ├── verify.html │ │ └── writeall.html │ ├── openwindow.html │ ├── openwrapper.html │ ├── orient.html │ ├── paint.html │ ├── path.html │ ├── peekbox.html │ ├── plot.html │ ├── plow.html │ ├── polygon.html │ ├── popbox.html │ ├── popstack.html │ ├── port.html │ ├── promptload.html │ ├── promptsave.html │ ├── property.html │ ├── pushbox.html │ ├── pushbutton.html │ ├── pushstack.html │ ├── quit.html │ ├── random.html │ ├── readspice.html │ ├── redo.html │ ├── redraw.html │ ├── render3d.html │ ├── resumeall.html │ ├── rotate.html │ ├── route.html │ ├── ruler.html │ ├── save.html │ ├── scalegrid.html │ ├── scroll.html │ ├── search.html │ ├── see.html │ ├── select.html │ ├── setlabel.html │ ├── setpoint.html │ ├── shell.html │ ├── sideways.html │ ├── sleep.html │ ├── snap.html │ ├── specialopen.html │ ├── spliterase.html │ ├── splitpaint.html │ ├── startup.html │ ├── straighten.html │ ├── stretch.html │ ├── suspendall.html │ ├── tag.html │ ├── tech.html │ ├── techmanager.html │ ├── template.html │ ├── tk_path_name.html │ ├── tool.html │ ├── undo.html │ ├── unexpand.html │ ├── unmeasure.html │ ├── updatedisplay.html │ ├── upsidedown.html │ ├── version.html │ ├── view.html │ ├── what.html │ ├── wind3d │ │ ├── cif.html │ │ ├── closewindow.html │ │ ├── cutbox.html │ │ ├── defaults.html │ │ ├── help.html │ │ ├── level.html │ │ ├── refresh.html │ │ ├── render.html │ │ ├── scroll.html │ │ ├── see.html │ │ ├── view.html │ │ └── zoom.html │ ├── windowborder.html │ ├── windowcaption.html │ ├── windownames.html │ ├── windowscrollbars.html │ ├── wire.html │ ├── wizard │ │ ├── coord.html │ │ ├── crash.html │ │ ├── extract.html │ │ ├── files.html │ │ ├── grstats.html │ │ ├── pause.html │ │ ├── plow.html │ │ ├── psearch.html │ │ ├── showtech.html │ │ ├── tilestats.html │ │ ├── tsearch.html │ │ ├── watch.html │ │ ├── winddebug.html │ │ └── winddump.html │ ├── writeall.html │ ├── xload.html │ ├── xor.html │ ├── xview.html │ └── zoom.html ├── latexfiles │ ├── Makefile │ ├── addendum6_5.tex │ ├── copyright.tex │ ├── introduction.tex │ ├── maint1.tex │ ├── maint2.tex │ ├── maint3.tex │ ├── maint4.tex │ ├── manual.tex │ ├── tut1.tex │ ├── tut10.tex │ ├── tut11.tex │ ├── tut2.tex │ ├── tut3.tex │ ├── tut4.tex │ ├── tut5.tex │ ├── tut6.tex │ ├── tut7.tex │ ├── tut8.tex │ ├── tut9.tex │ ├── tutscm1.tex │ ├── tutscm2.tex │ ├── tutscm3.tex │ ├── tutscm4.tex │ ├── tuttcl1.tex │ ├── tuttcl2.tex │ ├── tuttcl3.tex │ ├── tuttcl4.tex │ ├── tuttcl5.tex │ └── tutwrl1.tex ├── man │ ├── Makefile │ ├── cmap.5 │ ├── displays.5 │ ├── dlys.5 │ ├── dstyle.5 │ ├── ext.5 │ ├── ext2sim.1 │ ├── ext2spice.1 │ ├── extcheck.1 │ ├── glyphs.5 │ ├── mag.5 │ ├── magic.1 │ ├── net.5 │ ├── sim.5 │ └── tmac.anc ├── psfigures │ ├── maint2.1.ps │ ├── maint2.11.ps │ ├── maint2.2.ps │ ├── maint2.3.ps │ ├── maint2.3b.ps │ ├── maint2.4.ps │ ├── maint2.5.ps │ ├── maint2.6.ps │ ├── maint2.6b.ps │ ├── maint2.7.ps │ ├── maint2.8.ps │ ├── maint2.9.ps │ ├── tut2.1.ps │ ├── tut2.2.ps │ ├── tut7.1.ps │ ├── tut7.2.ps │ ├── tut7.3.ps │ ├── tut8.1.ps │ ├── tut8.2.ps │ ├── tut8.3.ps │ ├── tut8.4.ps │ ├── tut8.5.ps │ ├── tut9.1.ps │ ├── tutcell.cif │ ├── tutcell1.mag │ ├── tutw1.1.ps │ └── tutw1.2.ps ├── psfiles │ ├── addendum6_5.ps │ ├── copyright.ps │ ├── introduction.ps │ ├── maint1.ps │ ├── maint2.ps │ ├── maint3.ps │ ├── maint4.ps │ ├── tut1.ps │ ├── tut10.ps │ ├── tut11.ps │ ├── tut2.ps │ ├── tut3.ps │ ├── tut4.ps │ ├── tut5.ps │ ├── tut6.ps │ ├── tut7.ps │ ├── tut8.ps │ ├── tut9.ps │ ├── tutscm1.ps │ ├── tutscm2.ps │ ├── tutscm3.ps │ ├── tutscm4.ps │ ├── tuttcl1.ps │ ├── tuttcl2.ps │ ├── tuttcl3.ps │ ├── tuttcl4.ps │ ├── tuttcl5.ps │ └── tutwrl1.ps ├── textfiles │ ├── LEF.txt │ ├── default_macros.txt │ ├── hires-color.txt │ ├── locking.txt │ ├── macro_extension.txt │ ├── non-manhattan.txt │ ├── open_gl.txt │ └── readline.txt └── tutcells │ ├── Makefile │ ├── m3a.mag │ ├── maint2a.mag │ ├── tut1.mag │ ├── tut11a.al │ ├── tut11a.cmd │ ├── tut11a.ext │ ├── tut11a.mag │ ├── tut11a.nodes │ ├── tut11a.sim │ ├── tut11b.ext │ ├── tut11b.mag │ ├── tut11c.ext │ ├── tut11c.mag │ ├── tut11d.ext │ ├── tut11d.mag │ ├── tut2.f1a.cif │ ├── tut2.f1b.cif │ ├── tut2a.mag │ ├── tut2b.mag │ ├── tut2c.mag │ ├── tut2d.mag │ ├── tut3a.mag │ ├── tut3b.mag │ ├── tut3c.mag │ ├── tut3d.mag │ ├── tut3e.mag │ ├── tut3f.mag │ ├── tut3g.mag │ ├── tut3h.mag │ ├── tut4a.mag │ ├── tut4x.mag │ ├── tut4y.mag │ ├── tut4z.mag │ ├── tut5a.mag │ ├── tut5b.mag │ ├── tut6a.mag │ ├── tut6b.mag │ ├── tut6c.mag │ ├── tut6x.mag │ ├── tut6y.mag │ ├── tut7a.mag │ ├── tut7b.mag │ ├── tut7b.net │ ├── tut7c.mag │ ├── tut7d.mag │ ├── tut7d.net │ ├── tut8a.mag │ ├── tut8b.mag │ ├── tut8c.mag │ ├── tut8d.mag │ ├── tut8e.mag │ ├── tut8f.mag │ ├── tut8g.mag │ ├── tut8h.mag │ ├── tut8i.mag │ ├── tut8j.mag │ ├── tut8k.mag │ ├── tut8l.mag │ ├── tut8m.mag │ ├── tut8n.mag │ ├── tut8r.mag │ ├── tut9a.mag │ ├── tut9b.mag │ ├── tut9x.mag │ ├── tut9y.mag │ └── tuttcl1.cmd ├── drc ├── DRCarray.c ├── DRCbasic.c ├── DRCcif.c ├── DRCcontin.c ├── DRCextend.c ├── DRCmain.c ├── DRCprint.c ├── DRCsubcell.c ├── DRCtech.c ├── Makefile └── drc.h ├── ext2sim ├── Makefile ├── ext2sim.c ├── finds.c ├── sim2simp.c └── sim2spi ├── ext2spice ├── Makefile ├── ext2hier.c ├── ext2spice.c ├── ext2spice.h └── spice2sim ├── extcheck ├── Makefile └── extcheck.c ├── extflat ├── COMPRESS ├── EFantenna.c ├── EFargs.c ├── EFbuild.c ├── EFdef.c ├── EFerr.c ├── EFflat.c ├── EFhier.c ├── EFint.h ├── EFname.c ├── EFread.c ├── EFsym.c ├── EFtypes.h ├── EFvisit.c ├── Makefile ├── READ_ME └── extflat.h ├── extract ├── ExtArray.c ├── ExtBasic.c ├── ExtCell.c ├── ExtCouple.c ├── ExtHard.c ├── ExtHier.c ├── ExtInter.c ├── ExtLength.c ├── ExtMain.c ├── ExtNghbors.c ├── ExtPerim.c ├── ExtRegion.c ├── ExtSubtree.c ├── ExtTech.c ├── ExtTest.c ├── ExtTimes.c ├── ExtUnique.c ├── ExtYank.c ├── Makefile ├── extDebugInt.h ├── extract.h ├── extractInt.h └── extractInt.h.new ├── garouter ├── Makefile ├── OUTLINE ├── TODO ├── gaChannel.c ├── gaDebug.h ├── gaInternal.h ├── gaMain.c ├── gaMaze.c ├── gaSimple.c ├── gaStem.c ├── gaTest.c └── garouter.h ├── gcr ├── Makefile ├── gcr.h ├── gcrChannel.c ├── gcrColl.c ├── gcrDebug.c ├── gcrEdge.c ├── gcrFeas.c ├── gcrFlags.c ├── gcrInit.c ├── gcrLib.c ├── gcrRiver.c ├── gcrRoute.c ├── gcrShwFlgs.c └── gcrUnsplit.c ├── graphics ├── DEFAULT.glyphs ├── FreeMono.pt3 ├── FreeSans.pt3 ├── FreeSerif.pt3 ├── Makefile ├── README.X10a ├── READ_ME ├── W3Dmain.c ├── X11Helper.c ├── bw.glyphs ├── cairo_new │ ├── grTCairo1.c │ ├── grTCairo2.c │ ├── grTCairo3.c │ ├── grTCairo4.c │ └── grTCairo5.c ├── cairo_orig │ ├── grTCairo1.c │ ├── grTCairo2.c │ ├── grTCairo3.c │ ├── grTCairo4.c │ └── grTCairo5.c ├── color.glyphs ├── glyphs.h ├── grCMap.c ├── grClip.c ├── grDStyle.c ├── grGlyphs.c ├── grLock.c ├── grMain.c ├── grNull.c ├── grOGL1.c ├── grOGL2.c ├── grOGL3.c ├── grOGL4.c ├── grOGL5.c ├── grOGLInt.h ├── grTCairo1.c ├── grTCairo2.c ├── grTCairo3.c ├── grTCairo4.c ├── grTCairo5.c ├── grTCairoInt.h ├── grTOGL1.c ├── grTOGL2.c ├── grTOGL3.c ├── grTOGL4.c ├── grTOGL5.c ├── grTOGLInt.h ├── grText.c ├── grTk1.c ├── grTk2.c ├── grTk3.c ├── grTk4.c ├── grTk5.c ├── grTkCommon.c ├── grTkCommon.h ├── grTkInt.h ├── grX11Int.h ├── grX11su1.c ├── grX11su2.c ├── grX11su3.c ├── grX11su4.c ├── grX11su5.c ├── grX11thread.c ├── graphics.h ├── graphicsInt.h ├── prcolors.c └── wind3d.h ├── grouter ├── Makefile ├── TODO ├── grouteChan.c ├── grouteCrss.c ├── grouteDebug.h ├── grouteDens.c ├── grouteMain.c ├── grouteMaze.c ├── grouteMult.c ├── grouteName.c ├── grouteNet.c ├── groutePath.c ├── groutePen.c ├── groutePin.c ├── grouteTest.c ├── grouteTile.c └── grouter.h ├── irouter ├── Makefile ├── irCommand.c ├── irDebug.h ├── irInternal.h ├── irMain.c ├── irRoute.c ├── irTestCmd.c ├── irUtils.c └── irouter.h ├── lef ├── Makefile ├── defRead.c ├── defWrite.c ├── lef.h ├── lefCmd.c ├── lefInt.h ├── lefRead.c ├── lefTech.c ├── lefWrite.c └── tcllef.c ├── lisp ├── Makefile ├── README ├── lisp.h ├── lispA-Z.c ├── lispA-Z.h ├── lispArith.c ├── lispEval.c ├── lispFrame.c ├── lispGC.c ├── lispIO.c ├── lispInt.h ├── lispMagic.c ├── lispMain.c ├── lispParse.c ├── lispPrint.c ├── lispString.c ├── lispTrace.c ├── lispargs.h └── scm │ ├── box.scm │ ├── default.scm │ ├── draw.scm │ ├── drc.scm │ ├── gate.scm │ ├── help.scm │ ├── label.scm │ ├── layout.scm │ ├── prs.scm │ ├── sel.scm │ └── stack.scm ├── magic ├── Makefile ├── bitmaps │ ├── down.gif │ ├── down.xbm │ ├── left.gif │ ├── left.xbm │ ├── lock.xbm │ ├── right.gif │ ├── right.xbm │ ├── up.gif │ ├── up.xbm │ ├── zoom.gif │ └── zoom.xbm ├── magicTop.c ├── magicps.pro ├── proto.initrc ├── proto.magicrc.in └── symbol.map ├── mzrouter ├── Makefile ├── mzBlock.c ├── mzDebug.c ├── mzDebug.h ├── mzEstimate.c ├── mzHint.c ├── mzInit.c ├── mzInternal.h ├── mzMain.c ├── mzNumLine.c ├── mzSearch.c ├── mzStart.c ├── mzSubrs.c ├── mzTech.c ├── mzTestCmd.c ├── mzWalk.c ├── mzXtndDown.c ├── mzXtndLeft.c ├── mzXtndRght.c ├── mzXtndUp.c └── mzrouter.h ├── net2ir ├── Makefile └── net2ir.c ├── netmenu ├── Makefile ├── NMbutton.c ├── NMcmdAK.c ├── NMcmdLZ.c ├── NMlabel.c ├── NMmain.c ├── NMnetlist.c ├── NMshowcell.c ├── NMshowpt.c ├── NMundo.c ├── NMwiring.c ├── netmenu.h └── nmInt.h ├── oa ├── .deps │ ├── magicInit.P │ └── magicOA.P ├── Makefile ├── magicInit.cpp ├── magicInit.h ├── magicOA.cpp ├── magicOA.h ├── oa.c └── oa.h ├── plot ├── Makefile ├── plot.h ├── plotCmd.c ├── plotGremln.c ├── plotHP.c ├── plotInt.h ├── plotMain.c ├── plotPNM.c ├── plotPS.c ├── plotPixels.c ├── plotRutils.c ├── plotVers.c └── tclplot.c ├── plow ├── Makefile ├── PlowCmd.c ├── PlowJogs.c ├── PlowMain.c ├── PlowQueue.c ├── PlowRandom.c ├── PlowRules1.c ├── PlowRules2.c ├── PlowRules3.c ├── PlowSearch.c ├── PlowTech.c ├── PlowTest.c ├── PlowWidth.c ├── PlowYank.c ├── TODO ├── plow.h ├── plowDebugInt.h └── plowInt.h ├── readline ├── Makefile ├── README └── readline │ ├── CHANGELOG │ ├── CHANGES │ ├── COPYING │ ├── INSTALL │ ├── MANIFEST │ ├── Makefile.in │ ├── README │ ├── USAGE │ ├── aclocal.m4 │ ├── ansi_stdlib.h │ ├── bind.c │ ├── callback.c │ ├── chardefs.h │ ├── compat.c │ ├── complete.c │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── display.c │ ├── doc │ ├── Makefile.in │ ├── hist.texinfo │ ├── history.3 │ ├── hstech.texinfo │ ├── hsuser.texinfo │ ├── manvers.texinfo │ ├── readline.3 │ ├── rlman.texinfo │ ├── rltech.texinfo │ ├── rluser.texinfo │ ├── rluserman.texinfo │ ├── texi2dvi │ ├── texi2html │ └── texinfo.tex │ ├── emacs_keymap.c │ ├── examples │ ├── Inputrc │ ├── Makefile.in │ ├── excallback.c │ ├── fileman.c │ ├── histexamp.c │ ├── manexamp.c │ ├── readlinebuf.h │ ├── rl.c │ ├── rlcat.c │ ├── rlfe.c │ ├── rltest.c │ └── rlversion.c │ ├── funmap.c │ ├── histexpand.c │ ├── histfile.c │ ├── histlib.h │ ├── history.c │ ├── history.h │ ├── histsearch.c │ ├── input.c │ ├── isearch.c │ ├── keymaps.c │ ├── keymaps.h │ ├── kill.c │ ├── macro.c │ ├── mbutil.c │ ├── misc.c │ ├── nls.c │ ├── parens.c │ ├── posixdir.h │ ├── posixjmp.h │ ├── posixstat.h │ ├── readline.c │ ├── readline.h │ ├── rlconf.h │ ├── rldefs.h │ ├── rlmbutil.h │ ├── rlprivate.h │ ├── rlshell.h │ ├── rlstdc.h │ ├── rltty.c │ ├── rltty.h │ ├── rltypedefs.h │ ├── rlwinsize.h │ ├── savestring.c │ ├── search.c │ ├── shell.c │ ├── shlib │ └── Makefile.in │ ├── signals.c │ ├── support │ ├── config.guess │ ├── config.sub │ ├── install.sh │ ├── mkdirs │ ├── mkdist │ ├── shlib-install │ ├── shobj-conf │ └── wcwidth.c │ ├── tcap.h │ ├── terminal.c │ ├── text.c │ ├── tilde.c │ ├── tilde.h │ ├── undo.c │ ├── util.c │ ├── vi_keymap.c │ ├── vi_mode.c │ ├── xmalloc.c │ └── xmalloc.h ├── resis ├── Makefile ├── ResBasic.c ├── ResChecks.c ├── ResDebug.c ├── ResFract.c ├── ResJunct.c ├── ResMain.c ├── ResMakeRes.c ├── ResMerge.c ├── ResPrint.c ├── ResReadSim.c ├── ResRex.c ├── ResSimple.c ├── ResUtils.c ├── ResWrite.c └── resis.h ├── router ├── Makefile ├── router.h ├── routerInt.h ├── rtrChannel.c ├── rtrCmd.c ├── rtrDcmpose.c ├── rtrDcmpose.h ├── rtrFdback.c ├── rtrHazards.c ├── rtrMain.c ├── rtrPaint.c ├── rtrPin.c ├── rtrSide.c ├── rtrStem.c ├── rtrTech.c ├── rtrTravers.c ├── rtrVia.c └── tclroute.c ├── rules.mak ├── scmos ├── COPYRIGHT ├── Makefile ├── README ├── cif_template │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── calc.lambda │ ├── cifin-ami16.gen │ ├── cifin-cmos14b.gen │ ├── cifin-cmos26b.gen │ ├── cifin-cmos26g.gen │ ├── cifin-cmosn.gen │ ├── cifin-cmosn.nw │ ├── cifin-cmosx.gen │ ├── cifin-hp-cif.nw │ ├── cifin-hp.nw │ ├── cifin-ibm.gen │ ├── cifin.c │ ├── cifin.cascade │ ├── cifin.gen │ ├── cifin.nw │ ├── cifin.oldnw │ ├── cifin.others │ ├── cifin.pw │ ├── cifin26g.c │ ├── cifout-ami16.gen │ ├── cifout-cmos14b-sub.gen │ ├── cifout-cmos14b.gen │ ├── cifout-cmos26b.gen │ ├── cifout-cmos26g.gen │ ├── cifout-cmos26g.soi │ ├── cifout-cmos34.gen │ ├── cifout-cmos34.nw │ ├── cifout-cmos34.pw │ ├── cifout-cmosn.gen │ ├── cifout-cmosn.nw │ ├── cifout-cmosx.gen │ ├── cifout-ibm.gen │ ├── cifout-orbit.gen │ ├── cifout-orbit.nw │ ├── cifout-orbit.pw │ ├── cifout.c │ ├── cifout.gen │ ├── cifout.gen-old │ ├── cifout.nw │ ├── cifout.others │ ├── cifout.pw │ ├── cifout.scgnw │ ├── cifout.scgpw │ ├── cifout.test │ ├── cifout26g.c │ └── scgcifout.c ├── doc │ ├── scmos-hpsub-rules │ └── scmos-rules-rev7.ps ├── examples │ ├── bipolar │ │ ├── README │ │ ├── guardring-npn.mag │ │ ├── large_npn.mag │ │ ├── min.mag │ │ ├── min2b.mag │ │ ├── min2e.mag │ │ ├── min_npn.mag │ │ ├── npn12_array_core.cif │ │ ├── npn_array.mag │ │ ├── npn_array16.cif │ │ ├── npn_array20.cif │ │ ├── pbase-resis.mag │ │ └── vertical-pnp.mag │ ├── ccd │ │ ├── ccd.mag │ │ ├── ccd_array.mag │ │ └── qq.cif │ ├── float_gate │ │ └── float_gate.mag │ ├── linear_capacitor │ │ ├── wellcap.cif │ │ └── wellcap.mag │ ├── nist-mems-library │ │ ├── gas-sensor.cif │ │ ├── gas-sensor.mag │ │ ├── memslib.cif │ │ ├── memslib.mag │ │ ├── micro-hot-plate.cif │ │ ├── micro-hot-plate.mag │ │ ├── nist_mems_lib.doc │ │ ├── open-80x80.cif │ │ ├── open-80x80.mag │ │ ├── open-oxide-80x80.cif │ │ ├── open-oxide-80x80.mag │ │ ├── pixel-160x160.cif │ │ ├── pixel-160x160.mag │ │ ├── pixel-80x80.cif │ │ ├── pixel-80x80.mag │ │ ├── thermal-actuator.cif │ │ ├── thermal-actuator.mag │ │ ├── thermal-converter.cif │ │ └── thermal-converter.mag │ ├── palette.mag │ └── poly_capacitor │ │ └── cap_array.mag ├── extract_template │ ├── scmosExt.tech.in │ ├── scmosExt060_orb.tech.in │ ├── scmosExt080.tech.in │ ├── scmosExt100.tech.in │ ├── scmosExt14b-sub.tech.in │ ├── scmosExt14b-tm.tech.in │ ├── scmosExt26b-sub.tech.in │ ├── scmosExt26b.tech.in │ ├── scmosExt34.tech.in │ └── scmosExtDiag.tech.in ├── gdsquery.tech.in ├── minimum.tech.in ├── mos.24bit.dstyle ├── mos.24bit.std.cmap ├── mos.7bit.dstyle ├── mos.7bit.mraster.cmap ├── mos.7bit.mraster_dstyle ├── mos.7bit.sgi.cmap ├── mos.7bit.std.cmap ├── mos.OpenGL.dstyle ├── mos.OpenGL.dstyle.mark ├── mos.OpenGL.std.cmap ├── nmos.tech.in ├── rules │ ├── all-rules.mag │ ├── rule1.mag │ ├── rule10.mag │ ├── rule11.mag │ ├── rule12.mag │ ├── rule14.mag │ ├── rule15.mag │ ├── rule16.mag │ ├── rule17.mag │ ├── rule18.mag │ ├── rule19.mag │ ├── rule2.mag │ ├── rule3.mag │ ├── rule4.mag │ ├── rule4_2.mag │ ├── rule5a.mag │ ├── rule5b.mag │ ├── rule6a.mag │ ├── rule6b.mag │ ├── rule7.mag │ ├── rule8.mag │ └── rule9.mag └── scmos.tech.in ├── scripts ├── .gitignore ├── config.guess ├── config.sub ├── configure ├── configure.in ├── configure_mac ├── defs.mak.in ├── install-sh ├── magic.spec.in ├── makedbh.in ├── missing ├── mkdirs ├── mkinstalldirs ├── preproc.py └── printmans ├── select ├── Makefile ├── selCreate.c ├── selDisplay.c ├── selEnum.c ├── selInt.h ├── selOps.c ├── selUndo.c ├── selUnselect.c └── select.h ├── sim ├── Makefile ├── SimDBstuff.c ├── SimExtract.c ├── SimRsim.c ├── SimSelect.c └── sim.h ├── tcltk ├── Makefile ├── bsitools.tcl ├── cellmgr.tcl ├── console.tcl ├── drcmgr.tcl ├── ext2sim.sh.in ├── ext2spice.sh.in ├── libmgr.tcl ├── magic.sh.in ├── magic.tcl.in ├── magicdnull.c ├── magicexec.c ├── magicps.pro ├── mazeroute.tcl ├── readspice.tcl ├── reorderLayers.tcl ├── socketcmd.tcl ├── strip_reflibs.tcl ├── tclmagic.c ├── tclmagic.h ├── techbuilder.tcl ├── texthelper.tcl ├── tkcon.tcl ├── tkshell.tcl ├── toolbar.tcl ├── toolkit.tcl ├── toolkit_rev0.tcl ├── tools.tcl └── wrapper.tcl ├── textio ├── Makefile ├── textio.h ├── textioInt.h ├── txCommands.c ├── txInput.c ├── txMain.c ├── txMore.c ├── txOutput.c └── txcommands.h ├── tiles ├── Makefile ├── search.c ├── tile.c └── tile.h ├── utils ├── LIBdbio.c ├── LIBmain.c ├── LIBtextio.c ├── Makefile ├── args.c ├── child.c ├── displays.proto ├── dqueue.c ├── dqueue.h ├── finddisp.c ├── flock.c ├── flsbuf.c ├── fraction.c ├── geofast.h ├── geometry.c ├── geometry.h ├── getrect.c ├── hash.c ├── hash.h ├── heap.c ├── heap.h ├── ihash.c ├── ihash.h ├── list.c ├── list.h ├── lookup.c ├── lookupany.c ├── lookupfull.c ├── macros.c ├── macros.h ├── magic.h ├── magic_alloca.h ├── magic_assert.h ├── magic_stdbool.h ├── magic_zlib.h ├── magsgtty.h ├── main.c ├── main.h ├── malloc.c ├── malloc.h ├── match.c ├── maxrect.c ├── maxrect.h ├── netlist.c ├── netlist.h ├── niceabort.c ├── parser.c ├── parsetest.c ├── path.c ├── paths.h ├── pathvisit.c ├── pathvisit.h ├── port.c ├── printstuff.c ├── runstats.c ├── runstats.h ├── set.c ├── show.c ├── signals.c ├── signals.h ├── stack.c ├── stack.h ├── strdup.c ├── styles.h ├── tech.c ├── tech.h ├── touchingtypes.h ├── touchtypes.c ├── undo.c ├── undo.h └── utils.h ├── windows ├── Makefile ├── vfont.B.12 ├── vfont.I.12 ├── vfont.R.8 ├── windClient.c ├── windCmdAM.c ├── windCmdNR.c ├── windCmdSZ.c ├── windDebug.c ├── windDisp.c ├── windInt.h ├── windMain.c ├── windMove.c ├── windSearch.c ├── windSend.c ├── windTrans.c ├── windView.c ├── windows.h ├── windows11.glyphs ├── windows14.glyphs ├── windows22.glyphs └── windows7.glyphs └── wiring ├── Makefile ├── wireInt.h ├── wireOps.c ├── wireTech.c ├── wireUndo.c └── wiring.h /.dockerignore: -------------------------------------------------------------------------------- 1 | ./appimage -------------------------------------------------------------------------------- /.git-expand-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/.git-expand-header -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL_MacOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/INSTALL_MacOS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/Makefile -------------------------------------------------------------------------------- /README.Tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/README.Tcl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 8.3.581 2 | -------------------------------------------------------------------------------- /appimage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/.gitignore -------------------------------------------------------------------------------- /appimage/10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/10/Dockerfile -------------------------------------------------------------------------------- /appimage/10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/10/Makefile -------------------------------------------------------------------------------- /appimage/10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/10/README.md -------------------------------------------------------------------------------- /appimage/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/7/Dockerfile -------------------------------------------------------------------------------- /appimage/7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/7/Makefile -------------------------------------------------------------------------------- /appimage/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/7/README.md -------------------------------------------------------------------------------- /appimage/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/8/Dockerfile -------------------------------------------------------------------------------- /appimage/8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/8/Makefile -------------------------------------------------------------------------------- /appimage/8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/8/README.md -------------------------------------------------------------------------------- /appimage/9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/9/Dockerfile -------------------------------------------------------------------------------- /appimage/9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/9/Makefile -------------------------------------------------------------------------------- /appimage/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/9/README.md -------------------------------------------------------------------------------- /appimage/rsc/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/rsc/AppRun -------------------------------------------------------------------------------- /appimage/rsc/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/appimage/rsc/magic.svg -------------------------------------------------------------------------------- /bplane/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/Makefile -------------------------------------------------------------------------------- /bplane/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/README -------------------------------------------------------------------------------- /bplane/bpBins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpBins.c -------------------------------------------------------------------------------- /bplane/bpDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpDump.c -------------------------------------------------------------------------------- /bplane/bpEnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpEnum.c -------------------------------------------------------------------------------- /bplane/bpEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpEnum.h -------------------------------------------------------------------------------- /bplane/bpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpMain.c -------------------------------------------------------------------------------- /bplane/bpOpaque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpOpaque.h -------------------------------------------------------------------------------- /bplane/bpStat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpStat.c -------------------------------------------------------------------------------- /bplane/bpTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpTest.c -------------------------------------------------------------------------------- /bplane/bpUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bpUtils.c -------------------------------------------------------------------------------- /bplane/bplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bplane.h -------------------------------------------------------------------------------- /bplane/bplaneInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/bplane/bplaneInt.h -------------------------------------------------------------------------------- /calma/CalmaRdcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/CalmaRdcl.c -------------------------------------------------------------------------------- /calma/CalmaRdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/CalmaRdio.c -------------------------------------------------------------------------------- /calma/CalmaRdpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/CalmaRdpt.c -------------------------------------------------------------------------------- /calma/CalmaRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/CalmaRead.c -------------------------------------------------------------------------------- /calma/CalmaWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/CalmaWrite.c -------------------------------------------------------------------------------- /calma/CalmaWriteZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/CalmaWriteZ.c -------------------------------------------------------------------------------- /calma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/Makefile -------------------------------------------------------------------------------- /calma/calma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/calma.h -------------------------------------------------------------------------------- /calma/calmaInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/calma/calmaInt.h -------------------------------------------------------------------------------- /cif/CIFgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFgen.c -------------------------------------------------------------------------------- /cif/CIFhier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFhier.c -------------------------------------------------------------------------------- /cif/CIFint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFint.h -------------------------------------------------------------------------------- /cif/CIFmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFmain.c -------------------------------------------------------------------------------- /cif/CIFrdcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFrdcl.c -------------------------------------------------------------------------------- /cif/CIFrdpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFrdpoly.c -------------------------------------------------------------------------------- /cif/CIFrdpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFrdpt.c -------------------------------------------------------------------------------- /cif/CIFrdtech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFrdtech.c -------------------------------------------------------------------------------- /cif/CIFrdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFrdutils.c -------------------------------------------------------------------------------- /cif/CIFread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFread.h -------------------------------------------------------------------------------- /cif/CIFsee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFsee.c -------------------------------------------------------------------------------- /cif/CIFtech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFtech.c -------------------------------------------------------------------------------- /cif/CIFwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/CIFwrite.c -------------------------------------------------------------------------------- /cif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/Makefile -------------------------------------------------------------------------------- /cif/cif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cif/cif.h -------------------------------------------------------------------------------- /cmwind/CMWcmmnds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cmwind/CMWcmmnds.c -------------------------------------------------------------------------------- /cmwind/CMWmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cmwind/CMWmain.c -------------------------------------------------------------------------------- /cmwind/CMWrgbhsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cmwind/CMWrgbhsv.c -------------------------------------------------------------------------------- /cmwind/CMWundo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cmwind/CMWundo.c -------------------------------------------------------------------------------- /cmwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cmwind/Makefile -------------------------------------------------------------------------------- /cmwind/cmwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/cmwind/cmwind.h -------------------------------------------------------------------------------- /commands/CmdAB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdAB.c -------------------------------------------------------------------------------- /commands/CmdAuto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdAuto.c -------------------------------------------------------------------------------- /commands/CmdCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdCD.c -------------------------------------------------------------------------------- /commands/CmdE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdE.c -------------------------------------------------------------------------------- /commands/CmdFI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdFI.c -------------------------------------------------------------------------------- /commands/CmdLQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdLQ.c -------------------------------------------------------------------------------- /commands/CmdRS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdRS.c -------------------------------------------------------------------------------- /commands/CmdSubrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdSubrs.c -------------------------------------------------------------------------------- /commands/CmdTZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdTZ.c -------------------------------------------------------------------------------- /commands/CmdWizard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/CmdWizard.c -------------------------------------------------------------------------------- /commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/Makefile -------------------------------------------------------------------------------- /commands/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/commands/commands.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/configure -------------------------------------------------------------------------------- /database/DBbound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBbound.c -------------------------------------------------------------------------------- /database/DBcell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcell.c -------------------------------------------------------------------------------- /database/DBcellbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcellbox.c -------------------------------------------------------------------------------- /database/DBcellcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcellcopy.c -------------------------------------------------------------------------------- /database/DBcellname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcellname.c -------------------------------------------------------------------------------- /database/DBcellsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcellsel.c -------------------------------------------------------------------------------- /database/DBcellsrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcellsrch.c -------------------------------------------------------------------------------- /database/DBcellsubr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcellsubr.c -------------------------------------------------------------------------------- /database/DBconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBconnect.c -------------------------------------------------------------------------------- /database/DBcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBcount.c -------------------------------------------------------------------------------- /database/DBexpand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBexpand.c -------------------------------------------------------------------------------- /database/DBio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBio.c -------------------------------------------------------------------------------- /database/DBlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBlabel.c -------------------------------------------------------------------------------- /database/DBlabel2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBlabel2.c -------------------------------------------------------------------------------- /database/DBpaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBpaint.c -------------------------------------------------------------------------------- /database/DBpaint2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBpaint2.c -------------------------------------------------------------------------------- /database/DBprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBprop.c -------------------------------------------------------------------------------- /database/DBtcontact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtcontact.c -------------------------------------------------------------------------------- /database/DBtech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtech.c -------------------------------------------------------------------------------- /database/DBtechname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtechname.c -------------------------------------------------------------------------------- /database/DBtechtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtechtype.c -------------------------------------------------------------------------------- /database/DBtiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtiles.c -------------------------------------------------------------------------------- /database/DBtimestmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtimestmp.c -------------------------------------------------------------------------------- /database/DBtpaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtpaint.c -------------------------------------------------------------------------------- /database/DBtpaint2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBtpaint2.c -------------------------------------------------------------------------------- /database/DBundo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/DBundo.c -------------------------------------------------------------------------------- /database/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/Makefile -------------------------------------------------------------------------------- /database/arrayinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/arrayinfo.h -------------------------------------------------------------------------------- /database/database.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/database.h.in -------------------------------------------------------------------------------- /database/databaseInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/databaseInt.h -------------------------------------------------------------------------------- /database/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/database/fonts.h -------------------------------------------------------------------------------- /dbwind/DBWbuttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWbuttons.c -------------------------------------------------------------------------------- /dbwind/DBWcommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWcommands.c -------------------------------------------------------------------------------- /dbwind/DBWdisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWdisplay.c -------------------------------------------------------------------------------- /dbwind/DBWelement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWelement.c -------------------------------------------------------------------------------- /dbwind/DBWfdback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWfdback.c -------------------------------------------------------------------------------- /dbwind/DBWhlights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWhlights.c -------------------------------------------------------------------------------- /dbwind/DBWprocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWprocs.c -------------------------------------------------------------------------------- /dbwind/DBWtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWtools.c -------------------------------------------------------------------------------- /dbwind/DBWundo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/DBWundo.c -------------------------------------------------------------------------------- /dbwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/Makefile -------------------------------------------------------------------------------- /dbwind/dbwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/dbwind.h -------------------------------------------------------------------------------- /dbwind/dbwtech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/dbwind/dbwtech.h -------------------------------------------------------------------------------- /debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/debug/Makefile -------------------------------------------------------------------------------- /debug/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/debug/debug.h -------------------------------------------------------------------------------- /debug/debugFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/debug/debugFlags.c -------------------------------------------------------------------------------- /debug/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/debug/hist.c -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/Makefile -------------------------------------------------------------------------------- /doc/html/addpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/addpath.html -------------------------------------------------------------------------------- /doc/html/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/archive.html -------------------------------------------------------------------------------- /doc/html/array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/array.html -------------------------------------------------------------------------------- /doc/html/box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/box.html -------------------------------------------------------------------------------- /doc/html/calma.html: -------------------------------------------------------------------------------- 1 | gds.html -------------------------------------------------------------------------------- /doc/html/caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/caption.html -------------------------------------------------------------------------------- /doc/html/cellmanager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/cellmanager.html -------------------------------------------------------------------------------- /doc/html/cellname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/cellname.html -------------------------------------------------------------------------------- /doc/html/cellsearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/cellsearch.html -------------------------------------------------------------------------------- /doc/html/center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/center.html -------------------------------------------------------------------------------- /doc/html/changetool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/changetool.html -------------------------------------------------------------------------------- /doc/html/channels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/channels.html -------------------------------------------------------------------------------- /doc/html/cif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/cif.html -------------------------------------------------------------------------------- /doc/html/clockwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/clockwise.html -------------------------------------------------------------------------------- /doc/html/closewindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/closewindow.html -------------------------------------------------------------------------------- /doc/html/color/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/color/color.html -------------------------------------------------------------------------------- /doc/html/color/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/color/load.html -------------------------------------------------------------------------------- /doc/html/color/save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/color/save.html -------------------------------------------------------------------------------- /doc/html/commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/commands.html -------------------------------------------------------------------------------- /doc/html/commands.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/commands.list -------------------------------------------------------------------------------- /doc/html/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/contact.html -------------------------------------------------------------------------------- /doc/html/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/copy.html -------------------------------------------------------------------------------- /doc/html/corner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/corner.html -------------------------------------------------------------------------------- /doc/html/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/crash.html -------------------------------------------------------------------------------- /doc/html/crosshair.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/crosshair.html -------------------------------------------------------------------------------- /doc/html/cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/cursor.html -------------------------------------------------------------------------------- /doc/html/def.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/def.html -------------------------------------------------------------------------------- /doc/html/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/delete.html -------------------------------------------------------------------------------- /doc/html/direction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/direction.html -------------------------------------------------------------------------------- /doc/html/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/display.html -------------------------------------------------------------------------------- /doc/html/distance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/distance.html -------------------------------------------------------------------------------- /doc/html/down.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/down.html -------------------------------------------------------------------------------- /doc/html/drc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/drc.html -------------------------------------------------------------------------------- /doc/html/drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/drop.html -------------------------------------------------------------------------------- /doc/html/dump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/dump.html -------------------------------------------------------------------------------- /doc/html/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/edit.html -------------------------------------------------------------------------------- /doc/html/element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/element.html -------------------------------------------------------------------------------- /doc/html/erase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/erase.html -------------------------------------------------------------------------------- /doc/html/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/expand.html -------------------------------------------------------------------------------- /doc/html/ext.html: -------------------------------------------------------------------------------- 1 | extract.html -------------------------------------------------------------------------------- /doc/html/ext2sim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/ext2sim.html -------------------------------------------------------------------------------- /doc/html/ext2spice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/ext2spice.html -------------------------------------------------------------------------------- /doc/html/extract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/extract.html -------------------------------------------------------------------------------- /doc/html/extresist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/extresist.html -------------------------------------------------------------------------------- /doc/html/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/feedback.html -------------------------------------------------------------------------------- /doc/html/fill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/fill.html -------------------------------------------------------------------------------- /doc/html/findbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/findbox.html -------------------------------------------------------------------------------- /doc/html/findlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/findlabel.html -------------------------------------------------------------------------------- /doc/html/flatten.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/flatten.html -------------------------------------------------------------------------------- /doc/html/flush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/flush.html -------------------------------------------------------------------------------- /doc/html/garoute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/garoute.html -------------------------------------------------------------------------------- /doc/html/gds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/gds.html -------------------------------------------------------------------------------- /doc/html/get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/get.html -------------------------------------------------------------------------------- /doc/html/getcell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/getcell.html -------------------------------------------------------------------------------- /doc/html/getnode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/getnode.html -------------------------------------------------------------------------------- /doc/html/goto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/goto.html -------------------------------------------------------------------------------- /doc/html/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/grid.html -------------------------------------------------------------------------------- /doc/html/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/help.html -------------------------------------------------------------------------------- /doc/html/identify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/identify.html -------------------------------------------------------------------------------- /doc/html/imacro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/imacro.html -------------------------------------------------------------------------------- /doc/html/initialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/initialize.html -------------------------------------------------------------------------------- /doc/html/instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/instance.html -------------------------------------------------------------------------------- /doc/html/invoke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/invoke.html -------------------------------------------------------------------------------- /doc/html/iroute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/iroute.html -------------------------------------------------------------------------------- /doc/html/irsim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/irsim.html -------------------------------------------------------------------------------- /doc/html/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/label.html -------------------------------------------------------------------------------- /doc/html/lef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/lef.html -------------------------------------------------------------------------------- /doc/html/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/load.html -------------------------------------------------------------------------------- /doc/html/locking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/locking.html -------------------------------------------------------------------------------- /doc/html/logcommands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/logcommands.html -------------------------------------------------------------------------------- /doc/html/macro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/macro.html -------------------------------------------------------------------------------- /doc/html/maketoolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/maketoolbar.html -------------------------------------------------------------------------------- /doc/html/measure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/measure.html -------------------------------------------------------------------------------- /doc/html/move.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/move.html -------------------------------------------------------------------------------- /doc/html/netlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/netlist.html -------------------------------------------------------------------------------- /doc/html/netlist/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/netlist/add.html -------------------------------------------------------------------------------- /doc/html/openwindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/openwindow.html -------------------------------------------------------------------------------- /doc/html/openwrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/openwrapper.html -------------------------------------------------------------------------------- /doc/html/orient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/orient.html -------------------------------------------------------------------------------- /doc/html/paint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/paint.html -------------------------------------------------------------------------------- /doc/html/path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/path.html -------------------------------------------------------------------------------- /doc/html/peekbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/peekbox.html -------------------------------------------------------------------------------- /doc/html/plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/plot.html -------------------------------------------------------------------------------- /doc/html/plow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/plow.html -------------------------------------------------------------------------------- /doc/html/polygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/polygon.html -------------------------------------------------------------------------------- /doc/html/popbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/popbox.html -------------------------------------------------------------------------------- /doc/html/popstack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/popstack.html -------------------------------------------------------------------------------- /doc/html/port.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/port.html -------------------------------------------------------------------------------- /doc/html/promptload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/promptload.html -------------------------------------------------------------------------------- /doc/html/promptsave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/promptsave.html -------------------------------------------------------------------------------- /doc/html/property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/property.html -------------------------------------------------------------------------------- /doc/html/pushbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/pushbox.html -------------------------------------------------------------------------------- /doc/html/pushbutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/pushbutton.html -------------------------------------------------------------------------------- /doc/html/pushstack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/pushstack.html -------------------------------------------------------------------------------- /doc/html/quit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/quit.html -------------------------------------------------------------------------------- /doc/html/random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/random.html -------------------------------------------------------------------------------- /doc/html/readspice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/readspice.html -------------------------------------------------------------------------------- /doc/html/redo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/redo.html -------------------------------------------------------------------------------- /doc/html/redraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/redraw.html -------------------------------------------------------------------------------- /doc/html/render3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/render3d.html -------------------------------------------------------------------------------- /doc/html/resumeall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/resumeall.html -------------------------------------------------------------------------------- /doc/html/rotate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/rotate.html -------------------------------------------------------------------------------- /doc/html/route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/route.html -------------------------------------------------------------------------------- /doc/html/ruler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/ruler.html -------------------------------------------------------------------------------- /doc/html/save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/save.html -------------------------------------------------------------------------------- /doc/html/scalegrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/scalegrid.html -------------------------------------------------------------------------------- /doc/html/scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/scroll.html -------------------------------------------------------------------------------- /doc/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/search.html -------------------------------------------------------------------------------- /doc/html/see.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/see.html -------------------------------------------------------------------------------- /doc/html/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/select.html -------------------------------------------------------------------------------- /doc/html/setlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/setlabel.html -------------------------------------------------------------------------------- /doc/html/setpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/setpoint.html -------------------------------------------------------------------------------- /doc/html/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/shell.html -------------------------------------------------------------------------------- /doc/html/sideways.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/sideways.html -------------------------------------------------------------------------------- /doc/html/sleep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/sleep.html -------------------------------------------------------------------------------- /doc/html/snap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/snap.html -------------------------------------------------------------------------------- /doc/html/specialopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/specialopen.html -------------------------------------------------------------------------------- /doc/html/spliterase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/spliterase.html -------------------------------------------------------------------------------- /doc/html/splitpaint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/splitpaint.html -------------------------------------------------------------------------------- /doc/html/startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/startup.html -------------------------------------------------------------------------------- /doc/html/straighten.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/straighten.html -------------------------------------------------------------------------------- /doc/html/stretch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/stretch.html -------------------------------------------------------------------------------- /doc/html/suspendall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/suspendall.html -------------------------------------------------------------------------------- /doc/html/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/tag.html -------------------------------------------------------------------------------- /doc/html/tech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/tech.html -------------------------------------------------------------------------------- /doc/html/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/template.html -------------------------------------------------------------------------------- /doc/html/tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/tool.html -------------------------------------------------------------------------------- /doc/html/undo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/undo.html -------------------------------------------------------------------------------- /doc/html/unexpand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/unexpand.html -------------------------------------------------------------------------------- /doc/html/unmeasure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/unmeasure.html -------------------------------------------------------------------------------- /doc/html/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/version.html -------------------------------------------------------------------------------- /doc/html/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/view.html -------------------------------------------------------------------------------- /doc/html/what.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/what.html -------------------------------------------------------------------------------- /doc/html/wire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/wire.html -------------------------------------------------------------------------------- /doc/html/writeall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/writeall.html -------------------------------------------------------------------------------- /doc/html/xload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/xload.html -------------------------------------------------------------------------------- /doc/html/xor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/xor.html -------------------------------------------------------------------------------- /doc/html/xview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/xview.html -------------------------------------------------------------------------------- /doc/html/zoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/html/zoom.html -------------------------------------------------------------------------------- /doc/latexfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/Makefile -------------------------------------------------------------------------------- /doc/latexfiles/tut1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut1.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut2.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut3.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut4.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut5.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut6.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut7.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut8.tex -------------------------------------------------------------------------------- /doc/latexfiles/tut9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/latexfiles/tut9.tex -------------------------------------------------------------------------------- /doc/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/Makefile -------------------------------------------------------------------------------- /doc/man/cmap.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/cmap.5 -------------------------------------------------------------------------------- /doc/man/displays.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/displays.5 -------------------------------------------------------------------------------- /doc/man/dlys.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/dlys.5 -------------------------------------------------------------------------------- /doc/man/dstyle.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/dstyle.5 -------------------------------------------------------------------------------- /doc/man/ext.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/ext.5 -------------------------------------------------------------------------------- /doc/man/ext2sim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/ext2sim.1 -------------------------------------------------------------------------------- /doc/man/ext2spice.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/ext2spice.1 -------------------------------------------------------------------------------- /doc/man/extcheck.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/extcheck.1 -------------------------------------------------------------------------------- /doc/man/glyphs.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/glyphs.5 -------------------------------------------------------------------------------- /doc/man/mag.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/mag.5 -------------------------------------------------------------------------------- /doc/man/magic.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/magic.1 -------------------------------------------------------------------------------- /doc/man/net.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/net.5 -------------------------------------------------------------------------------- /doc/man/sim.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/sim.5 -------------------------------------------------------------------------------- /doc/man/tmac.anc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/man/tmac.anc -------------------------------------------------------------------------------- /doc/psfigures/tut2.1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut2.1.ps -------------------------------------------------------------------------------- /doc/psfigures/tut2.2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut2.2.ps -------------------------------------------------------------------------------- /doc/psfigures/tut7.1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut7.1.ps -------------------------------------------------------------------------------- /doc/psfigures/tut7.2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut7.2.ps -------------------------------------------------------------------------------- /doc/psfigures/tut7.3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut7.3.ps -------------------------------------------------------------------------------- /doc/psfigures/tut8.1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut8.1.ps -------------------------------------------------------------------------------- /doc/psfigures/tut8.2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut8.2.ps -------------------------------------------------------------------------------- /doc/psfigures/tut8.3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut8.3.ps -------------------------------------------------------------------------------- /doc/psfigures/tut8.4.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut8.4.ps -------------------------------------------------------------------------------- /doc/psfigures/tut8.5.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut8.5.ps -------------------------------------------------------------------------------- /doc/psfigures/tut9.1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfigures/tut9.1.ps -------------------------------------------------------------------------------- /doc/psfiles/maint1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/maint1.ps -------------------------------------------------------------------------------- /doc/psfiles/maint2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/maint2.ps -------------------------------------------------------------------------------- /doc/psfiles/maint3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/maint3.ps -------------------------------------------------------------------------------- /doc/psfiles/maint4.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/maint4.ps -------------------------------------------------------------------------------- /doc/psfiles/tut1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut1.ps -------------------------------------------------------------------------------- /doc/psfiles/tut10.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut10.ps -------------------------------------------------------------------------------- /doc/psfiles/tut11.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut11.ps -------------------------------------------------------------------------------- /doc/psfiles/tut2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut2.ps -------------------------------------------------------------------------------- /doc/psfiles/tut3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut3.ps -------------------------------------------------------------------------------- /doc/psfiles/tut4.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut4.ps -------------------------------------------------------------------------------- /doc/psfiles/tut5.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut5.ps -------------------------------------------------------------------------------- /doc/psfiles/tut6.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut6.ps -------------------------------------------------------------------------------- /doc/psfiles/tut7.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut7.ps -------------------------------------------------------------------------------- /doc/psfiles/tut8.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut8.ps -------------------------------------------------------------------------------- /doc/psfiles/tut9.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tut9.ps -------------------------------------------------------------------------------- /doc/psfiles/tutscm1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tutscm1.ps -------------------------------------------------------------------------------- /doc/psfiles/tutscm2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tutscm2.ps -------------------------------------------------------------------------------- /doc/psfiles/tutscm3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tutscm3.ps -------------------------------------------------------------------------------- /doc/psfiles/tutscm4.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tutscm4.ps -------------------------------------------------------------------------------- /doc/psfiles/tuttcl1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tuttcl1.ps -------------------------------------------------------------------------------- /doc/psfiles/tuttcl2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tuttcl2.ps -------------------------------------------------------------------------------- /doc/psfiles/tuttcl3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tuttcl3.ps -------------------------------------------------------------------------------- /doc/psfiles/tuttcl4.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tuttcl4.ps -------------------------------------------------------------------------------- /doc/psfiles/tuttcl5.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tuttcl5.ps -------------------------------------------------------------------------------- /doc/psfiles/tutwrl1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/psfiles/tutwrl1.ps -------------------------------------------------------------------------------- /doc/textfiles/LEF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/textfiles/LEF.txt -------------------------------------------------------------------------------- /doc/tutcells/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/Makefile -------------------------------------------------------------------------------- /doc/tutcells/m3a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/m3a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut1.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut1.mag -------------------------------------------------------------------------------- /doc/tutcells/tut11a.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11a.al -------------------------------------------------------------------------------- /doc/tutcells/tut11a.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11a.cmd -------------------------------------------------------------------------------- /doc/tutcells/tut11a.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11a.ext -------------------------------------------------------------------------------- /doc/tutcells/tut11a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut11a.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11a.sim -------------------------------------------------------------------------------- /doc/tutcells/tut11b.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11b.ext -------------------------------------------------------------------------------- /doc/tutcells/tut11b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut11c.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11c.ext -------------------------------------------------------------------------------- /doc/tutcells/tut11c.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11c.mag -------------------------------------------------------------------------------- /doc/tutcells/tut11d.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11d.ext -------------------------------------------------------------------------------- /doc/tutcells/tut11d.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut11d.mag -------------------------------------------------------------------------------- /doc/tutcells/tut2a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut2a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut2b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut2b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut2c.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut2c.mag -------------------------------------------------------------------------------- /doc/tutcells/tut2d.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut2d.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3c.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3c.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3d.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3d.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3e.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3e.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3f.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3f.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3g.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3g.mag -------------------------------------------------------------------------------- /doc/tutcells/tut3h.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut3h.mag -------------------------------------------------------------------------------- /doc/tutcells/tut4a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut4a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut4x.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut4x.mag -------------------------------------------------------------------------------- /doc/tutcells/tut4y.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut4y.mag -------------------------------------------------------------------------------- /doc/tutcells/tut4z.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut4z.mag -------------------------------------------------------------------------------- /doc/tutcells/tut5a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut5a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut5b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut5b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut6a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut6a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut6b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut6b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut6c.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut6c.mag -------------------------------------------------------------------------------- /doc/tutcells/tut6x.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut6x.mag -------------------------------------------------------------------------------- /doc/tutcells/tut6y.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut6y.mag -------------------------------------------------------------------------------- /doc/tutcells/tut7a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut7a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut7b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut7b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut7b.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut7b.net -------------------------------------------------------------------------------- /doc/tutcells/tut7c.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut7c.mag -------------------------------------------------------------------------------- /doc/tutcells/tut7d.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut7d.mag -------------------------------------------------------------------------------- /doc/tutcells/tut7d.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut7d.net -------------------------------------------------------------------------------- /doc/tutcells/tut8a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8c.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8c.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8d.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8d.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8e.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8e.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8f.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8f.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8g.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8g.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8h.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8h.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8i.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8i.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8j.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8j.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8k.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8k.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8l.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8l.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8m.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8m.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8n.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8n.mag -------------------------------------------------------------------------------- /doc/tutcells/tut8r.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut8r.mag -------------------------------------------------------------------------------- /doc/tutcells/tut9a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut9a.mag -------------------------------------------------------------------------------- /doc/tutcells/tut9b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut9b.mag -------------------------------------------------------------------------------- /doc/tutcells/tut9x.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut9x.mag -------------------------------------------------------------------------------- /doc/tutcells/tut9y.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/doc/tutcells/tut9y.mag -------------------------------------------------------------------------------- /drc/DRCarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCarray.c -------------------------------------------------------------------------------- /drc/DRCbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCbasic.c -------------------------------------------------------------------------------- /drc/DRCcif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCcif.c -------------------------------------------------------------------------------- /drc/DRCcontin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCcontin.c -------------------------------------------------------------------------------- /drc/DRCextend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCextend.c -------------------------------------------------------------------------------- /drc/DRCmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCmain.c -------------------------------------------------------------------------------- /drc/DRCprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCprint.c -------------------------------------------------------------------------------- /drc/DRCsubcell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCsubcell.c -------------------------------------------------------------------------------- /drc/DRCtech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/DRCtech.c -------------------------------------------------------------------------------- /drc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/Makefile -------------------------------------------------------------------------------- /drc/drc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/drc/drc.h -------------------------------------------------------------------------------- /ext2sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2sim/Makefile -------------------------------------------------------------------------------- /ext2sim/ext2sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2sim/ext2sim.c -------------------------------------------------------------------------------- /ext2sim/finds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2sim/finds.c -------------------------------------------------------------------------------- /ext2sim/sim2simp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2sim/sim2simp.c -------------------------------------------------------------------------------- /ext2sim/sim2spi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2sim/sim2spi -------------------------------------------------------------------------------- /ext2spice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2spice/Makefile -------------------------------------------------------------------------------- /ext2spice/ext2hier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2spice/ext2hier.c -------------------------------------------------------------------------------- /ext2spice/ext2spice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2spice/ext2spice.c -------------------------------------------------------------------------------- /ext2spice/ext2spice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2spice/ext2spice.h -------------------------------------------------------------------------------- /ext2spice/spice2sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/ext2spice/spice2sim -------------------------------------------------------------------------------- /extcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extcheck/Makefile -------------------------------------------------------------------------------- /extcheck/extcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extcheck/extcheck.c -------------------------------------------------------------------------------- /extflat/COMPRESS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/COMPRESS -------------------------------------------------------------------------------- /extflat/EFantenna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFantenna.c -------------------------------------------------------------------------------- /extflat/EFargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFargs.c -------------------------------------------------------------------------------- /extflat/EFbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFbuild.c -------------------------------------------------------------------------------- /extflat/EFdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFdef.c -------------------------------------------------------------------------------- /extflat/EFerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFerr.c -------------------------------------------------------------------------------- /extflat/EFflat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFflat.c -------------------------------------------------------------------------------- /extflat/EFhier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFhier.c -------------------------------------------------------------------------------- /extflat/EFint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFint.h -------------------------------------------------------------------------------- /extflat/EFname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFname.c -------------------------------------------------------------------------------- /extflat/EFread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFread.c -------------------------------------------------------------------------------- /extflat/EFsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFsym.c -------------------------------------------------------------------------------- /extflat/EFtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFtypes.h -------------------------------------------------------------------------------- /extflat/EFvisit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/EFvisit.c -------------------------------------------------------------------------------- /extflat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/Makefile -------------------------------------------------------------------------------- /extflat/READ_ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/READ_ME -------------------------------------------------------------------------------- /extflat/extflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extflat/extflat.h -------------------------------------------------------------------------------- /extract/ExtArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtArray.c -------------------------------------------------------------------------------- /extract/ExtBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtBasic.c -------------------------------------------------------------------------------- /extract/ExtCell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtCell.c -------------------------------------------------------------------------------- /extract/ExtCouple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtCouple.c -------------------------------------------------------------------------------- /extract/ExtHard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtHard.c -------------------------------------------------------------------------------- /extract/ExtHier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtHier.c -------------------------------------------------------------------------------- /extract/ExtInter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtInter.c -------------------------------------------------------------------------------- /extract/ExtLength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtLength.c -------------------------------------------------------------------------------- /extract/ExtMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtMain.c -------------------------------------------------------------------------------- /extract/ExtNghbors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtNghbors.c -------------------------------------------------------------------------------- /extract/ExtPerim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtPerim.c -------------------------------------------------------------------------------- /extract/ExtRegion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtRegion.c -------------------------------------------------------------------------------- /extract/ExtSubtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtSubtree.c -------------------------------------------------------------------------------- /extract/ExtTech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtTech.c -------------------------------------------------------------------------------- /extract/ExtTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtTest.c -------------------------------------------------------------------------------- /extract/ExtTimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtTimes.c -------------------------------------------------------------------------------- /extract/ExtUnique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtUnique.c -------------------------------------------------------------------------------- /extract/ExtYank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/ExtYank.c -------------------------------------------------------------------------------- /extract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/Makefile -------------------------------------------------------------------------------- /extract/extDebugInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/extDebugInt.h -------------------------------------------------------------------------------- /extract/extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/extract.h -------------------------------------------------------------------------------- /extract/extractInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/extract/extractInt.h -------------------------------------------------------------------------------- /garouter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/Makefile -------------------------------------------------------------------------------- /garouter/OUTLINE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/OUTLINE -------------------------------------------------------------------------------- /garouter/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/TODO -------------------------------------------------------------------------------- /garouter/gaChannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaChannel.c -------------------------------------------------------------------------------- /garouter/gaDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaDebug.h -------------------------------------------------------------------------------- /garouter/gaInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaInternal.h -------------------------------------------------------------------------------- /garouter/gaMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaMain.c -------------------------------------------------------------------------------- /garouter/gaMaze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaMaze.c -------------------------------------------------------------------------------- /garouter/gaSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaSimple.c -------------------------------------------------------------------------------- /garouter/gaStem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaStem.c -------------------------------------------------------------------------------- /garouter/gaTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/gaTest.c -------------------------------------------------------------------------------- /garouter/garouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/garouter/garouter.h -------------------------------------------------------------------------------- /gcr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/Makefile -------------------------------------------------------------------------------- /gcr/gcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcr.h -------------------------------------------------------------------------------- /gcr/gcrChannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrChannel.c -------------------------------------------------------------------------------- /gcr/gcrColl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrColl.c -------------------------------------------------------------------------------- /gcr/gcrDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrDebug.c -------------------------------------------------------------------------------- /gcr/gcrEdge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrEdge.c -------------------------------------------------------------------------------- /gcr/gcrFeas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrFeas.c -------------------------------------------------------------------------------- /gcr/gcrFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrFlags.c -------------------------------------------------------------------------------- /gcr/gcrInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrInit.c -------------------------------------------------------------------------------- /gcr/gcrLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrLib.c -------------------------------------------------------------------------------- /gcr/gcrRiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrRiver.c -------------------------------------------------------------------------------- /gcr/gcrRoute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrRoute.c -------------------------------------------------------------------------------- /gcr/gcrShwFlgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrShwFlgs.c -------------------------------------------------------------------------------- /gcr/gcrUnsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/gcr/gcrUnsplit.c -------------------------------------------------------------------------------- /graphics/DEFAULT.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/DEFAULT.glyphs -------------------------------------------------------------------------------- /graphics/FreeMono.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/FreeMono.pt3 -------------------------------------------------------------------------------- /graphics/FreeSans.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/FreeSans.pt3 -------------------------------------------------------------------------------- /graphics/FreeSerif.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/FreeSerif.pt3 -------------------------------------------------------------------------------- /graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/Makefile -------------------------------------------------------------------------------- /graphics/README.X10a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/README.X10a -------------------------------------------------------------------------------- /graphics/READ_ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/READ_ME -------------------------------------------------------------------------------- /graphics/W3Dmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/W3Dmain.c -------------------------------------------------------------------------------- /graphics/X11Helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/X11Helper.c -------------------------------------------------------------------------------- /graphics/bw.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/bw.glyphs -------------------------------------------------------------------------------- /graphics/color.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/color.glyphs -------------------------------------------------------------------------------- /graphics/glyphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/glyphs.h -------------------------------------------------------------------------------- /graphics/grCMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grCMap.c -------------------------------------------------------------------------------- /graphics/grClip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grClip.c -------------------------------------------------------------------------------- /graphics/grDStyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grDStyle.c -------------------------------------------------------------------------------- /graphics/grGlyphs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grGlyphs.c -------------------------------------------------------------------------------- /graphics/grLock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grLock.c -------------------------------------------------------------------------------- /graphics/grMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grMain.c -------------------------------------------------------------------------------- /graphics/grNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grNull.c -------------------------------------------------------------------------------- /graphics/grOGL1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grOGL1.c -------------------------------------------------------------------------------- /graphics/grOGL2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grOGL2.c -------------------------------------------------------------------------------- /graphics/grOGL3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grOGL3.c -------------------------------------------------------------------------------- /graphics/grOGL4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grOGL4.c -------------------------------------------------------------------------------- /graphics/grOGL5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grOGL5.c -------------------------------------------------------------------------------- /graphics/grOGLInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grOGLInt.h -------------------------------------------------------------------------------- /graphics/grTCairo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTCairo1.c -------------------------------------------------------------------------------- /graphics/grTCairo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTCairo2.c -------------------------------------------------------------------------------- /graphics/grTCairo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTCairo3.c -------------------------------------------------------------------------------- /graphics/grTCairo4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTCairo4.c -------------------------------------------------------------------------------- /graphics/grTCairo5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTCairo5.c -------------------------------------------------------------------------------- /graphics/grTCairoInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTCairoInt.h -------------------------------------------------------------------------------- /graphics/grTOGL1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTOGL1.c -------------------------------------------------------------------------------- /graphics/grTOGL2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTOGL2.c -------------------------------------------------------------------------------- /graphics/grTOGL3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTOGL3.c -------------------------------------------------------------------------------- /graphics/grTOGL4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTOGL4.c -------------------------------------------------------------------------------- /graphics/grTOGL5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTOGL5.c -------------------------------------------------------------------------------- /graphics/grTOGLInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTOGLInt.h -------------------------------------------------------------------------------- /graphics/grText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grText.c -------------------------------------------------------------------------------- /graphics/grTk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTk1.c -------------------------------------------------------------------------------- /graphics/grTk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTk2.c -------------------------------------------------------------------------------- /graphics/grTk3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTk3.c -------------------------------------------------------------------------------- /graphics/grTk4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTk4.c -------------------------------------------------------------------------------- /graphics/grTk5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTk5.c -------------------------------------------------------------------------------- /graphics/grTkCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTkCommon.c -------------------------------------------------------------------------------- /graphics/grTkCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTkCommon.h -------------------------------------------------------------------------------- /graphics/grTkInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grTkInt.h -------------------------------------------------------------------------------- /graphics/grX11Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grX11Int.h -------------------------------------------------------------------------------- /graphics/grX11su1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grX11su1.c -------------------------------------------------------------------------------- /graphics/grX11su2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grX11su2.c -------------------------------------------------------------------------------- /graphics/grX11su3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grX11su3.c -------------------------------------------------------------------------------- /graphics/grX11su4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grX11su4.c -------------------------------------------------------------------------------- /graphics/grX11su5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grX11su5.c -------------------------------------------------------------------------------- /graphics/grX11thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/grX11thread.c -------------------------------------------------------------------------------- /graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/graphics.h -------------------------------------------------------------------------------- /graphics/graphicsInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/graphicsInt.h -------------------------------------------------------------------------------- /graphics/prcolors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/prcolors.c -------------------------------------------------------------------------------- /graphics/wind3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/graphics/wind3d.h -------------------------------------------------------------------------------- /grouter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/Makefile -------------------------------------------------------------------------------- /grouter/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/TODO -------------------------------------------------------------------------------- /grouter/grouteChan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteChan.c -------------------------------------------------------------------------------- /grouter/grouteCrss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteCrss.c -------------------------------------------------------------------------------- /grouter/grouteDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteDebug.h -------------------------------------------------------------------------------- /grouter/grouteDens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteDens.c -------------------------------------------------------------------------------- /grouter/grouteMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteMain.c -------------------------------------------------------------------------------- /grouter/grouteMaze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteMaze.c -------------------------------------------------------------------------------- /grouter/grouteMult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteMult.c -------------------------------------------------------------------------------- /grouter/grouteName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteName.c -------------------------------------------------------------------------------- /grouter/grouteNet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteNet.c -------------------------------------------------------------------------------- /grouter/groutePath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/groutePath.c -------------------------------------------------------------------------------- /grouter/groutePen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/groutePen.c -------------------------------------------------------------------------------- /grouter/groutePin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/groutePin.c -------------------------------------------------------------------------------- /grouter/grouteTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteTest.c -------------------------------------------------------------------------------- /grouter/grouteTile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouteTile.c -------------------------------------------------------------------------------- /grouter/grouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/grouter/grouter.h -------------------------------------------------------------------------------- /irouter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/Makefile -------------------------------------------------------------------------------- /irouter/irCommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irCommand.c -------------------------------------------------------------------------------- /irouter/irDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irDebug.h -------------------------------------------------------------------------------- /irouter/irInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irInternal.h -------------------------------------------------------------------------------- /irouter/irMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irMain.c -------------------------------------------------------------------------------- /irouter/irRoute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irRoute.c -------------------------------------------------------------------------------- /irouter/irTestCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irTestCmd.c -------------------------------------------------------------------------------- /irouter/irUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irUtils.c -------------------------------------------------------------------------------- /irouter/irouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/irouter/irouter.h -------------------------------------------------------------------------------- /lef/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/Makefile -------------------------------------------------------------------------------- /lef/defRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/defRead.c -------------------------------------------------------------------------------- /lef/defWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/defWrite.c -------------------------------------------------------------------------------- /lef/lef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/lef.h -------------------------------------------------------------------------------- /lef/lefCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/lefCmd.c -------------------------------------------------------------------------------- /lef/lefInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/lefInt.h -------------------------------------------------------------------------------- /lef/lefRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/lefRead.c -------------------------------------------------------------------------------- /lef/lefTech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/lefTech.c -------------------------------------------------------------------------------- /lef/lefWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/lefWrite.c -------------------------------------------------------------------------------- /lef/tcllef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lef/tcllef.c -------------------------------------------------------------------------------- /lisp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/Makefile -------------------------------------------------------------------------------- /lisp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/README -------------------------------------------------------------------------------- /lisp/lisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lisp.h -------------------------------------------------------------------------------- /lisp/lispA-Z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispA-Z.c -------------------------------------------------------------------------------- /lisp/lispA-Z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispA-Z.h -------------------------------------------------------------------------------- /lisp/lispArith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispArith.c -------------------------------------------------------------------------------- /lisp/lispEval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispEval.c -------------------------------------------------------------------------------- /lisp/lispFrame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispFrame.c -------------------------------------------------------------------------------- /lisp/lispGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispGC.c -------------------------------------------------------------------------------- /lisp/lispIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispIO.c -------------------------------------------------------------------------------- /lisp/lispInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispInt.h -------------------------------------------------------------------------------- /lisp/lispMagic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispMagic.c -------------------------------------------------------------------------------- /lisp/lispMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispMain.c -------------------------------------------------------------------------------- /lisp/lispParse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispParse.c -------------------------------------------------------------------------------- /lisp/lispPrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispPrint.c -------------------------------------------------------------------------------- /lisp/lispString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispString.c -------------------------------------------------------------------------------- /lisp/lispTrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispTrace.c -------------------------------------------------------------------------------- /lisp/lispargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/lispargs.h -------------------------------------------------------------------------------- /lisp/scm/box.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/box.scm -------------------------------------------------------------------------------- /lisp/scm/default.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/default.scm -------------------------------------------------------------------------------- /lisp/scm/draw.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/draw.scm -------------------------------------------------------------------------------- /lisp/scm/drc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/drc.scm -------------------------------------------------------------------------------- /lisp/scm/gate.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/gate.scm -------------------------------------------------------------------------------- /lisp/scm/help.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/help.scm -------------------------------------------------------------------------------- /lisp/scm/label.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/label.scm -------------------------------------------------------------------------------- /lisp/scm/layout.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/layout.scm -------------------------------------------------------------------------------- /lisp/scm/prs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/prs.scm -------------------------------------------------------------------------------- /lisp/scm/sel.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/sel.scm -------------------------------------------------------------------------------- /lisp/scm/stack.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/lisp/scm/stack.scm -------------------------------------------------------------------------------- /magic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/Makefile -------------------------------------------------------------------------------- /magic/bitmaps/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/down.gif -------------------------------------------------------------------------------- /magic/bitmaps/down.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/down.xbm -------------------------------------------------------------------------------- /magic/bitmaps/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/left.gif -------------------------------------------------------------------------------- /magic/bitmaps/left.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/left.xbm -------------------------------------------------------------------------------- /magic/bitmaps/lock.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/lock.xbm -------------------------------------------------------------------------------- /magic/bitmaps/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/right.gif -------------------------------------------------------------------------------- /magic/bitmaps/right.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/right.xbm -------------------------------------------------------------------------------- /magic/bitmaps/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/up.gif -------------------------------------------------------------------------------- /magic/bitmaps/up.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/up.xbm -------------------------------------------------------------------------------- /magic/bitmaps/zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/zoom.gif -------------------------------------------------------------------------------- /magic/bitmaps/zoom.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/bitmaps/zoom.xbm -------------------------------------------------------------------------------- /magic/magicTop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/magicTop.c -------------------------------------------------------------------------------- /magic/magicps.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/magicps.pro -------------------------------------------------------------------------------- /magic/proto.initrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/proto.initrc -------------------------------------------------------------------------------- /magic/proto.magicrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/proto.magicrc.in -------------------------------------------------------------------------------- /magic/symbol.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/magic/symbol.map -------------------------------------------------------------------------------- /mzrouter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/Makefile -------------------------------------------------------------------------------- /mzrouter/mzBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzBlock.c -------------------------------------------------------------------------------- /mzrouter/mzDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzDebug.c -------------------------------------------------------------------------------- /mzrouter/mzDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzDebug.h -------------------------------------------------------------------------------- /mzrouter/mzEstimate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzEstimate.c -------------------------------------------------------------------------------- /mzrouter/mzHint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzHint.c -------------------------------------------------------------------------------- /mzrouter/mzInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzInit.c -------------------------------------------------------------------------------- /mzrouter/mzInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzInternal.h -------------------------------------------------------------------------------- /mzrouter/mzMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzMain.c -------------------------------------------------------------------------------- /mzrouter/mzNumLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzNumLine.c -------------------------------------------------------------------------------- /mzrouter/mzSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzSearch.c -------------------------------------------------------------------------------- /mzrouter/mzStart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzStart.c -------------------------------------------------------------------------------- /mzrouter/mzSubrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzSubrs.c -------------------------------------------------------------------------------- /mzrouter/mzTech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzTech.c -------------------------------------------------------------------------------- /mzrouter/mzTestCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzTestCmd.c -------------------------------------------------------------------------------- /mzrouter/mzWalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzWalk.c -------------------------------------------------------------------------------- /mzrouter/mzXtndDown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzXtndDown.c -------------------------------------------------------------------------------- /mzrouter/mzXtndLeft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzXtndLeft.c -------------------------------------------------------------------------------- /mzrouter/mzXtndRght.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzXtndRght.c -------------------------------------------------------------------------------- /mzrouter/mzXtndUp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzXtndUp.c -------------------------------------------------------------------------------- /mzrouter/mzrouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/mzrouter/mzrouter.h -------------------------------------------------------------------------------- /net2ir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/net2ir/Makefile -------------------------------------------------------------------------------- /net2ir/net2ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/net2ir/net2ir.c -------------------------------------------------------------------------------- /netmenu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/Makefile -------------------------------------------------------------------------------- /netmenu/NMbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMbutton.c -------------------------------------------------------------------------------- /netmenu/NMcmdAK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMcmdAK.c -------------------------------------------------------------------------------- /netmenu/NMcmdLZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMcmdLZ.c -------------------------------------------------------------------------------- /netmenu/NMlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMlabel.c -------------------------------------------------------------------------------- /netmenu/NMmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMmain.c -------------------------------------------------------------------------------- /netmenu/NMnetlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMnetlist.c -------------------------------------------------------------------------------- /netmenu/NMshowcell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMshowcell.c -------------------------------------------------------------------------------- /netmenu/NMshowpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMshowpt.c -------------------------------------------------------------------------------- /netmenu/NMundo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMundo.c -------------------------------------------------------------------------------- /netmenu/NMwiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/NMwiring.c -------------------------------------------------------------------------------- /netmenu/netmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/netmenu.h -------------------------------------------------------------------------------- /netmenu/nmInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/netmenu/nmInt.h -------------------------------------------------------------------------------- /oa/.deps/magicInit.P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/.deps/magicInit.P -------------------------------------------------------------------------------- /oa/.deps/magicOA.P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/.deps/magicOA.P -------------------------------------------------------------------------------- /oa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/Makefile -------------------------------------------------------------------------------- /oa/magicInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/magicInit.cpp -------------------------------------------------------------------------------- /oa/magicInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/magicInit.h -------------------------------------------------------------------------------- /oa/magicOA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/magicOA.cpp -------------------------------------------------------------------------------- /oa/magicOA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/magicOA.h -------------------------------------------------------------------------------- /oa/oa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/oa.c -------------------------------------------------------------------------------- /oa/oa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/oa/oa.h -------------------------------------------------------------------------------- /plot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/Makefile -------------------------------------------------------------------------------- /plot/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plot.h -------------------------------------------------------------------------------- /plot/plotCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotCmd.c -------------------------------------------------------------------------------- /plot/plotGremln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotGremln.c -------------------------------------------------------------------------------- /plot/plotHP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotHP.c -------------------------------------------------------------------------------- /plot/plotInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotInt.h -------------------------------------------------------------------------------- /plot/plotMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotMain.c -------------------------------------------------------------------------------- /plot/plotPNM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotPNM.c -------------------------------------------------------------------------------- /plot/plotPS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotPS.c -------------------------------------------------------------------------------- /plot/plotPixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotPixels.c -------------------------------------------------------------------------------- /plot/plotRutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotRutils.c -------------------------------------------------------------------------------- /plot/plotVers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/plotVers.c -------------------------------------------------------------------------------- /plot/tclplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plot/tclplot.c -------------------------------------------------------------------------------- /plow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/Makefile -------------------------------------------------------------------------------- /plow/PlowCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowCmd.c -------------------------------------------------------------------------------- /plow/PlowJogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowJogs.c -------------------------------------------------------------------------------- /plow/PlowMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowMain.c -------------------------------------------------------------------------------- /plow/PlowQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowQueue.c -------------------------------------------------------------------------------- /plow/PlowRandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowRandom.c -------------------------------------------------------------------------------- /plow/PlowRules1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowRules1.c -------------------------------------------------------------------------------- /plow/PlowRules2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowRules2.c -------------------------------------------------------------------------------- /plow/PlowRules3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowRules3.c -------------------------------------------------------------------------------- /plow/PlowSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowSearch.c -------------------------------------------------------------------------------- /plow/PlowTech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowTech.c -------------------------------------------------------------------------------- /plow/PlowTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowTest.c -------------------------------------------------------------------------------- /plow/PlowWidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowWidth.c -------------------------------------------------------------------------------- /plow/PlowYank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/PlowYank.c -------------------------------------------------------------------------------- /plow/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/TODO -------------------------------------------------------------------------------- /plow/plow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/plow.h -------------------------------------------------------------------------------- /plow/plowDebugInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/plowDebugInt.h -------------------------------------------------------------------------------- /plow/plowInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/plow/plowInt.h -------------------------------------------------------------------------------- /readline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/readline/Makefile -------------------------------------------------------------------------------- /readline/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/readline/README -------------------------------------------------------------------------------- /readline/readline/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/readline/readline/USAGE -------------------------------------------------------------------------------- /readline/readline/nls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/readline/readline/nls.c -------------------------------------------------------------------------------- /resis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/Makefile -------------------------------------------------------------------------------- /resis/ResBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResBasic.c -------------------------------------------------------------------------------- /resis/ResChecks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResChecks.c -------------------------------------------------------------------------------- /resis/ResDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResDebug.c -------------------------------------------------------------------------------- /resis/ResFract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResFract.c -------------------------------------------------------------------------------- /resis/ResJunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResJunct.c -------------------------------------------------------------------------------- /resis/ResMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResMain.c -------------------------------------------------------------------------------- /resis/ResMakeRes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResMakeRes.c -------------------------------------------------------------------------------- /resis/ResMerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResMerge.c -------------------------------------------------------------------------------- /resis/ResPrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResPrint.c -------------------------------------------------------------------------------- /resis/ResReadSim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResReadSim.c -------------------------------------------------------------------------------- /resis/ResRex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResRex.c -------------------------------------------------------------------------------- /resis/ResSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResSimple.c -------------------------------------------------------------------------------- /resis/ResUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResUtils.c -------------------------------------------------------------------------------- /resis/ResWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/ResWrite.c -------------------------------------------------------------------------------- /resis/resis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/resis/resis.h -------------------------------------------------------------------------------- /router/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/Makefile -------------------------------------------------------------------------------- /router/router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/router.h -------------------------------------------------------------------------------- /router/routerInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/routerInt.h -------------------------------------------------------------------------------- /router/rtrChannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrChannel.c -------------------------------------------------------------------------------- /router/rtrCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrCmd.c -------------------------------------------------------------------------------- /router/rtrDcmpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrDcmpose.c -------------------------------------------------------------------------------- /router/rtrDcmpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrDcmpose.h -------------------------------------------------------------------------------- /router/rtrFdback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrFdback.c -------------------------------------------------------------------------------- /router/rtrHazards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrHazards.c -------------------------------------------------------------------------------- /router/rtrMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrMain.c -------------------------------------------------------------------------------- /router/rtrPaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrPaint.c -------------------------------------------------------------------------------- /router/rtrPin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrPin.c -------------------------------------------------------------------------------- /router/rtrSide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrSide.c -------------------------------------------------------------------------------- /router/rtrStem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrStem.c -------------------------------------------------------------------------------- /router/rtrTech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrTech.c -------------------------------------------------------------------------------- /router/rtrTravers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrTravers.c -------------------------------------------------------------------------------- /router/rtrVia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/rtrVia.c -------------------------------------------------------------------------------- /router/tclroute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/router/tclroute.c -------------------------------------------------------------------------------- /rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/rules.mak -------------------------------------------------------------------------------- /scmos/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/COPYRIGHT -------------------------------------------------------------------------------- /scmos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/Makefile -------------------------------------------------------------------------------- /scmos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/README -------------------------------------------------------------------------------- /scmos/gdsquery.tech.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/gdsquery.tech.in -------------------------------------------------------------------------------- /scmos/minimum.tech.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/minimum.tech.in -------------------------------------------------------------------------------- /scmos/mos.24bit.dstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/mos.24bit.dstyle -------------------------------------------------------------------------------- /scmos/mos.7bit.dstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/mos.7bit.dstyle -------------------------------------------------------------------------------- /scmos/mos.7bit.sgi.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/mos.7bit.sgi.cmap -------------------------------------------------------------------------------- /scmos/mos.7bit.std.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/mos.7bit.std.cmap -------------------------------------------------------------------------------- /scmos/mos.OpenGL.dstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/mos.OpenGL.dstyle -------------------------------------------------------------------------------- /scmos/nmos.tech.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/nmos.tech.in -------------------------------------------------------------------------------- /scmos/rules/rule1.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule1.mag -------------------------------------------------------------------------------- /scmos/rules/rule10.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule10.mag -------------------------------------------------------------------------------- /scmos/rules/rule11.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule11.mag -------------------------------------------------------------------------------- /scmos/rules/rule12.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule12.mag -------------------------------------------------------------------------------- /scmos/rules/rule14.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule14.mag -------------------------------------------------------------------------------- /scmos/rules/rule15.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule15.mag -------------------------------------------------------------------------------- /scmos/rules/rule16.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule16.mag -------------------------------------------------------------------------------- /scmos/rules/rule17.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule17.mag -------------------------------------------------------------------------------- /scmos/rules/rule18.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule18.mag -------------------------------------------------------------------------------- /scmos/rules/rule19.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule19.mag -------------------------------------------------------------------------------- /scmos/rules/rule2.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule2.mag -------------------------------------------------------------------------------- /scmos/rules/rule3.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule3.mag -------------------------------------------------------------------------------- /scmos/rules/rule4.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule4.mag -------------------------------------------------------------------------------- /scmos/rules/rule4_2.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule4_2.mag -------------------------------------------------------------------------------- /scmos/rules/rule5a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule5a.mag -------------------------------------------------------------------------------- /scmos/rules/rule5b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule5b.mag -------------------------------------------------------------------------------- /scmos/rules/rule6a.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule6a.mag -------------------------------------------------------------------------------- /scmos/rules/rule6b.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule6b.mag -------------------------------------------------------------------------------- /scmos/rules/rule7.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule7.mag -------------------------------------------------------------------------------- /scmos/rules/rule8.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule8.mag -------------------------------------------------------------------------------- /scmos/rules/rule9.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/rules/rule9.mag -------------------------------------------------------------------------------- /scmos/scmos.tech.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scmos/scmos.tech.in -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | autom4te.cache/ 2 | makedbh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/configure -------------------------------------------------------------------------------- /scripts/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/configure.in -------------------------------------------------------------------------------- /scripts/configure_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/configure_mac -------------------------------------------------------------------------------- /scripts/defs.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/defs.mak.in -------------------------------------------------------------------------------- /scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/install-sh -------------------------------------------------------------------------------- /scripts/magic.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/magic.spec.in -------------------------------------------------------------------------------- /scripts/makedbh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/makedbh.in -------------------------------------------------------------------------------- /scripts/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/missing -------------------------------------------------------------------------------- /scripts/mkdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/mkdirs -------------------------------------------------------------------------------- /scripts/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/mkinstalldirs -------------------------------------------------------------------------------- /scripts/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/preproc.py -------------------------------------------------------------------------------- /scripts/printmans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/scripts/printmans -------------------------------------------------------------------------------- /select/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/Makefile -------------------------------------------------------------------------------- /select/selCreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/selCreate.c -------------------------------------------------------------------------------- /select/selDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/selDisplay.c -------------------------------------------------------------------------------- /select/selEnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/selEnum.c -------------------------------------------------------------------------------- /select/selInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/selInt.h -------------------------------------------------------------------------------- /select/selOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/selOps.c -------------------------------------------------------------------------------- /select/selUndo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/selUndo.c -------------------------------------------------------------------------------- /select/selUnselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/selUnselect.c -------------------------------------------------------------------------------- /select/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/select/select.h -------------------------------------------------------------------------------- /sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/sim/Makefile -------------------------------------------------------------------------------- /sim/SimDBstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/sim/SimDBstuff.c -------------------------------------------------------------------------------- /sim/SimExtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/sim/SimExtract.c -------------------------------------------------------------------------------- /sim/SimRsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/sim/SimRsim.c -------------------------------------------------------------------------------- /sim/SimSelect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/sim/SimSelect.c -------------------------------------------------------------------------------- /sim/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/sim/sim.h -------------------------------------------------------------------------------- /tcltk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/Makefile -------------------------------------------------------------------------------- /tcltk/bsitools.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/bsitools.tcl -------------------------------------------------------------------------------- /tcltk/cellmgr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/cellmgr.tcl -------------------------------------------------------------------------------- /tcltk/console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/console.tcl -------------------------------------------------------------------------------- /tcltk/drcmgr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/drcmgr.tcl -------------------------------------------------------------------------------- /tcltk/ext2sim.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/ext2sim.sh.in -------------------------------------------------------------------------------- /tcltk/ext2spice.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/ext2spice.sh.in -------------------------------------------------------------------------------- /tcltk/libmgr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/libmgr.tcl -------------------------------------------------------------------------------- /tcltk/magic.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/magic.sh.in -------------------------------------------------------------------------------- /tcltk/magic.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/magic.tcl.in -------------------------------------------------------------------------------- /tcltk/magicdnull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/magicdnull.c -------------------------------------------------------------------------------- /tcltk/magicexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/magicexec.c -------------------------------------------------------------------------------- /tcltk/magicps.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/magicps.pro -------------------------------------------------------------------------------- /tcltk/mazeroute.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/mazeroute.tcl -------------------------------------------------------------------------------- /tcltk/readspice.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/readspice.tcl -------------------------------------------------------------------------------- /tcltk/reorderLayers.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/reorderLayers.tcl -------------------------------------------------------------------------------- /tcltk/socketcmd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/socketcmd.tcl -------------------------------------------------------------------------------- /tcltk/strip_reflibs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/strip_reflibs.tcl -------------------------------------------------------------------------------- /tcltk/tclmagic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/tclmagic.c -------------------------------------------------------------------------------- /tcltk/tclmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/tclmagic.h -------------------------------------------------------------------------------- /tcltk/techbuilder.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/techbuilder.tcl -------------------------------------------------------------------------------- /tcltk/texthelper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/texthelper.tcl -------------------------------------------------------------------------------- /tcltk/tkcon.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/tkcon.tcl -------------------------------------------------------------------------------- /tcltk/tkshell.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/tkshell.tcl -------------------------------------------------------------------------------- /tcltk/toolbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/toolbar.tcl -------------------------------------------------------------------------------- /tcltk/toolkit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/toolkit.tcl -------------------------------------------------------------------------------- /tcltk/toolkit_rev0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/toolkit_rev0.tcl -------------------------------------------------------------------------------- /tcltk/tools.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/tools.tcl -------------------------------------------------------------------------------- /tcltk/wrapper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tcltk/wrapper.tcl -------------------------------------------------------------------------------- /textio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/Makefile -------------------------------------------------------------------------------- /textio/textio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/textio.h -------------------------------------------------------------------------------- /textio/textioInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/textioInt.h -------------------------------------------------------------------------------- /textio/txCommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/txCommands.c -------------------------------------------------------------------------------- /textio/txInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/txInput.c -------------------------------------------------------------------------------- /textio/txMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/txMain.c -------------------------------------------------------------------------------- /textio/txMore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/txMore.c -------------------------------------------------------------------------------- /textio/txOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/txOutput.c -------------------------------------------------------------------------------- /textio/txcommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/textio/txcommands.h -------------------------------------------------------------------------------- /tiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tiles/Makefile -------------------------------------------------------------------------------- /tiles/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tiles/search.c -------------------------------------------------------------------------------- /tiles/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tiles/tile.c -------------------------------------------------------------------------------- /tiles/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/tiles/tile.h -------------------------------------------------------------------------------- /utils/LIBdbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/LIBdbio.c -------------------------------------------------------------------------------- /utils/LIBmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/LIBmain.c -------------------------------------------------------------------------------- /utils/LIBtextio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/LIBtextio.c -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/args.c -------------------------------------------------------------------------------- /utils/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/child.c -------------------------------------------------------------------------------- /utils/displays.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/displays.proto -------------------------------------------------------------------------------- /utils/dqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/dqueue.c -------------------------------------------------------------------------------- /utils/dqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/dqueue.h -------------------------------------------------------------------------------- /utils/finddisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/finddisp.c -------------------------------------------------------------------------------- /utils/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/flock.c -------------------------------------------------------------------------------- /utils/flsbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/flsbuf.c -------------------------------------------------------------------------------- /utils/fraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/fraction.c -------------------------------------------------------------------------------- /utils/geofast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/geofast.h -------------------------------------------------------------------------------- /utils/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/geometry.c -------------------------------------------------------------------------------- /utils/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/geometry.h -------------------------------------------------------------------------------- /utils/getrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/getrect.c -------------------------------------------------------------------------------- /utils/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/hash.c -------------------------------------------------------------------------------- /utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/hash.h -------------------------------------------------------------------------------- /utils/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/heap.c -------------------------------------------------------------------------------- /utils/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/heap.h -------------------------------------------------------------------------------- /utils/ihash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/ihash.c -------------------------------------------------------------------------------- /utils/ihash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/ihash.h -------------------------------------------------------------------------------- /utils/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/list.c -------------------------------------------------------------------------------- /utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/list.h -------------------------------------------------------------------------------- /utils/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/lookup.c -------------------------------------------------------------------------------- /utils/lookupany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/lookupany.c -------------------------------------------------------------------------------- /utils/lookupfull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/lookupfull.c -------------------------------------------------------------------------------- /utils/macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/macros.c -------------------------------------------------------------------------------- /utils/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/macros.h -------------------------------------------------------------------------------- /utils/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/magic.h -------------------------------------------------------------------------------- /utils/magic_alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/magic_alloca.h -------------------------------------------------------------------------------- /utils/magic_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/magic_assert.h -------------------------------------------------------------------------------- /utils/magic_stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/magic_stdbool.h -------------------------------------------------------------------------------- /utils/magic_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/magic_zlib.h -------------------------------------------------------------------------------- /utils/magsgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/magsgtty.h -------------------------------------------------------------------------------- /utils/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/main.c -------------------------------------------------------------------------------- /utils/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/main.h -------------------------------------------------------------------------------- /utils/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/malloc.c -------------------------------------------------------------------------------- /utils/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/malloc.h -------------------------------------------------------------------------------- /utils/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/match.c -------------------------------------------------------------------------------- /utils/maxrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/maxrect.c -------------------------------------------------------------------------------- /utils/maxrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/maxrect.h -------------------------------------------------------------------------------- /utils/netlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/netlist.c -------------------------------------------------------------------------------- /utils/netlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/netlist.h -------------------------------------------------------------------------------- /utils/niceabort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/niceabort.c -------------------------------------------------------------------------------- /utils/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/parser.c -------------------------------------------------------------------------------- /utils/parsetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/parsetest.c -------------------------------------------------------------------------------- /utils/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/path.c -------------------------------------------------------------------------------- /utils/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/paths.h -------------------------------------------------------------------------------- /utils/pathvisit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/pathvisit.c -------------------------------------------------------------------------------- /utils/pathvisit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/pathvisit.h -------------------------------------------------------------------------------- /utils/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/port.c -------------------------------------------------------------------------------- /utils/printstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/printstuff.c -------------------------------------------------------------------------------- /utils/runstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/runstats.c -------------------------------------------------------------------------------- /utils/runstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/runstats.h -------------------------------------------------------------------------------- /utils/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/set.c -------------------------------------------------------------------------------- /utils/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/show.c -------------------------------------------------------------------------------- /utils/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/signals.c -------------------------------------------------------------------------------- /utils/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/signals.h -------------------------------------------------------------------------------- /utils/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/stack.c -------------------------------------------------------------------------------- /utils/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/stack.h -------------------------------------------------------------------------------- /utils/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/strdup.c -------------------------------------------------------------------------------- /utils/styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/styles.h -------------------------------------------------------------------------------- /utils/tech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/tech.c -------------------------------------------------------------------------------- /utils/tech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/tech.h -------------------------------------------------------------------------------- /utils/touchingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/touchingtypes.h -------------------------------------------------------------------------------- /utils/touchtypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/touchtypes.c -------------------------------------------------------------------------------- /utils/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/undo.c -------------------------------------------------------------------------------- /utils/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/undo.h -------------------------------------------------------------------------------- /utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/utils/utils.h -------------------------------------------------------------------------------- /windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/Makefile -------------------------------------------------------------------------------- /windows/vfont.B.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/vfont.B.12 -------------------------------------------------------------------------------- /windows/vfont.I.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/vfont.I.12 -------------------------------------------------------------------------------- /windows/vfont.R.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/vfont.R.8 -------------------------------------------------------------------------------- /windows/windClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windClient.c -------------------------------------------------------------------------------- /windows/windCmdAM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windCmdAM.c -------------------------------------------------------------------------------- /windows/windCmdNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windCmdNR.c -------------------------------------------------------------------------------- /windows/windCmdSZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windCmdSZ.c -------------------------------------------------------------------------------- /windows/windDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windDebug.c -------------------------------------------------------------------------------- /windows/windDisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windDisp.c -------------------------------------------------------------------------------- /windows/windInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windInt.h -------------------------------------------------------------------------------- /windows/windMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windMain.c -------------------------------------------------------------------------------- /windows/windMove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windMove.c -------------------------------------------------------------------------------- /windows/windSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windSearch.c -------------------------------------------------------------------------------- /windows/windSend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windSend.c -------------------------------------------------------------------------------- /windows/windTrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windTrans.c -------------------------------------------------------------------------------- /windows/windView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windView.c -------------------------------------------------------------------------------- /windows/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windows.h -------------------------------------------------------------------------------- /windows/windows7.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/windows/windows7.glyphs -------------------------------------------------------------------------------- /wiring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/wiring/Makefile -------------------------------------------------------------------------------- /wiring/wireInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/wiring/wireInt.h -------------------------------------------------------------------------------- /wiring/wireOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/wiring/wireOps.c -------------------------------------------------------------------------------- /wiring/wireTech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/wiring/wireTech.c -------------------------------------------------------------------------------- /wiring/wireUndo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/wiring/wireUndo.c -------------------------------------------------------------------------------- /wiring/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/magic/HEAD/wiring/wiring.h --------------------------------------------------------------------------------