├── .gitignore ├── Buildfile ├── LICENSE.txt ├── NOTICE ├── README.md ├── config.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs ├── colorpicker-1.0.jar └── mrjadapter-1.1.jar ├── notes ├── 2.5.1 │ └── announce-2.5.1.txt ├── 2.6.0 │ └── announce-2.6.0.txt ├── 2.6.1 │ └── announce-2.6.1.txt ├── 2.6.2 │ └── announce-2.6.2.txt ├── 2.6.3 │ └── announce-2.6.3.txt ├── 2.7.0 │ └── README.TXT └── 2.7.1 │ └── README.TXT ├── scripts ├── build-www.py ├── copy_doc.py ├── create-jar.py ├── data │ ├── Logisim.app │ │ ├── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ │ └── JavaApplicationStub │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ │ ├── LogisimApp.icns │ │ │ │ └── LogisimDoc.icns │ │ ├── LogisimApp.icns │ │ └── README │ └── macos-classes │ │ ├── MacOsAdapter$MyListener.class │ │ └── MacOsAdapter.class ├── doc2www.py ├── logisim_script.py └── pot-create.py ├── src ├── demos │ └── java │ │ └── com │ │ └── cburch │ │ ├── hex │ │ └── Test.java │ │ └── logisim │ │ └── SVG │ │ ├── Image.java │ │ └── Main.java └── main │ ├── java │ └── com │ │ ├── cburch │ │ ├── draw │ │ │ ├── actions │ │ │ │ ├── ModelAction.java │ │ │ │ ├── ModelAddAction.java │ │ │ │ ├── ModelChangeAttributeAction.java │ │ │ │ ├── ModelDeleteHandleAction.java │ │ │ │ ├── ModelEditTextAction.java │ │ │ │ ├── ModelInsertHandleAction.java │ │ │ │ ├── ModelMoveHandleAction.java │ │ │ │ ├── ModelRemoveAction.java │ │ │ │ ├── ModelReorderAction.java │ │ │ │ └── ModelTranslateAction.java │ │ │ ├── canvas │ │ │ │ ├── ActionDispatcher.java │ │ │ │ ├── Canvas.java │ │ │ │ ├── CanvasListener.java │ │ │ │ ├── CanvasTool.java │ │ │ │ ├── Selection.java │ │ │ │ ├── SelectionEvent.java │ │ │ │ └── SelectionListener.java │ │ │ ├── gui │ │ │ │ ├── AttrTableDrawManager.java │ │ │ │ ├── AttrTableSelectionModel.java │ │ │ │ ├── AttrTableToolModel.java │ │ │ │ ├── Main.java │ │ │ │ ├── SelectionAttributes.java │ │ │ │ └── Toolbar.java │ │ │ ├── model │ │ │ │ ├── AbstractCanvasObject.java │ │ │ │ ├── AttributeMapKey.java │ │ │ │ ├── CanvasModel.java │ │ │ │ ├── CanvasModelEvent.java │ │ │ │ ├── CanvasModelListener.java │ │ │ │ ├── CanvasObject.java │ │ │ │ ├── Drawing.java │ │ │ │ ├── DrawingOverlaps.java │ │ │ │ ├── Handle.java │ │ │ │ ├── HandleGesture.java │ │ │ │ └── ReorderRequest.java │ │ │ ├── shapes │ │ │ │ ├── Curve.java │ │ │ │ ├── CurveUtil.java │ │ │ │ ├── DrawAttr.java │ │ │ │ ├── FillableCanvasObject.java │ │ │ │ ├── Line.java │ │ │ │ ├── LineUtil.java │ │ │ │ ├── Oval.java │ │ │ │ ├── Poly.java │ │ │ │ ├── PolyUtil.java │ │ │ │ ├── Rectangle.java │ │ │ │ ├── Rectangular.java │ │ │ │ ├── RoundRectangle.java │ │ │ │ └── Text.java │ │ │ ├── toolbar │ │ │ │ ├── AbstractToolbarModel.java │ │ │ │ ├── Toolbar.java │ │ │ │ ├── ToolbarButton.java │ │ │ │ ├── ToolbarItem.java │ │ │ │ ├── ToolbarModel.java │ │ │ │ ├── ToolbarModelEvent.java │ │ │ │ ├── ToolbarModelListener.java │ │ │ │ └── ToolbarSeparator.java │ │ │ ├── tools │ │ │ │ ├── AbstractTool.java │ │ │ │ ├── CurveTool.java │ │ │ │ ├── DrawingAttributeSet.java │ │ │ │ ├── LineTool.java │ │ │ │ ├── OvalTool.java │ │ │ │ ├── PolyTool.java │ │ │ │ ├── RectangleTool.java │ │ │ │ ├── RectangularTool.java │ │ │ │ ├── RoundRectangleTool.java │ │ │ │ ├── SVGIcon.java │ │ │ │ ├── SelectTool.java │ │ │ │ ├── TextTool.java │ │ │ │ └── ToolbarToolItem.java │ │ │ ├── undo │ │ │ │ ├── Action.java │ │ │ │ ├── ActionUnion.java │ │ │ │ ├── UndoLog.java │ │ │ │ ├── UndoLogDispatcher.java │ │ │ │ ├── UndoLogEvent.java │ │ │ │ └── UndoLogListener.java │ │ │ └── util │ │ │ │ ├── EditableLabel.java │ │ │ │ ├── EditableLabelField.java │ │ │ │ ├── MatchingSet.java │ │ │ │ └── ZOrder.java │ │ ├── gray │ │ │ ├── Components.java │ │ │ ├── CounterData.java │ │ │ ├── CounterPoker.java │ │ │ ├── GrayCounter.java │ │ │ ├── GrayIncrementer.java │ │ │ └── SimpleGrayCounter.java │ │ ├── hex │ │ │ ├── Caret.java │ │ │ ├── HexEditor.java │ │ │ ├── HexModel.java │ │ │ ├── HexModelListener.java │ │ │ ├── Highlighter.java │ │ │ └── Measures.java │ │ └── logisim │ │ │ ├── LogisimVersion.java │ │ │ ├── Main.java │ │ │ ├── analyze │ │ │ ├── gui │ │ │ │ ├── Analyzer.java │ │ │ │ ├── AnalyzerManager.java │ │ │ │ ├── AnalyzerTab.java │ │ │ │ ├── BuildCircuitButton.java │ │ │ │ ├── DefaultRegistry.java │ │ │ │ ├── ExpressionTab.java │ │ │ │ ├── ExpressionView.java │ │ │ │ ├── KarnaughMapPanel.java │ │ │ │ ├── MinimizedTab.java │ │ │ │ ├── OutputSelector.java │ │ │ │ ├── TabInterface.java │ │ │ │ ├── TableTab.java │ │ │ │ ├── TableTabCaret.java │ │ │ │ ├── TableTabClip.java │ │ │ │ ├── TruthTableMouseListener.java │ │ │ │ ├── TruthTablePanel.java │ │ │ │ └── VariableTab.java │ │ │ └── model │ │ │ │ ├── AnalyzerModel.java │ │ │ │ ├── Assignments.java │ │ │ │ ├── Entry.java │ │ │ │ ├── Expression.java │ │ │ │ ├── ExpressionVisitor.java │ │ │ │ ├── Expressions.java │ │ │ │ ├── Implicant.java │ │ │ │ ├── OutputExpressions.java │ │ │ │ ├── OutputExpressionsEvent.java │ │ │ │ ├── OutputExpressionsListener.java │ │ │ │ ├── Parser.java │ │ │ │ ├── ParserException.java │ │ │ │ ├── TruthTable.java │ │ │ │ ├── TruthTableEvent.java │ │ │ │ ├── TruthTableListener.java │ │ │ │ ├── VariableList.java │ │ │ │ ├── VariableListEvent.java │ │ │ │ └── VariableListListener.java │ │ │ ├── circuit │ │ │ ├── Analyze.java │ │ │ ├── AnalyzeException.java │ │ │ ├── Circuit.java │ │ │ ├── CircuitAction.java │ │ │ ├── CircuitAttributes.java │ │ │ ├── CircuitChange.java │ │ │ ├── CircuitEvent.java │ │ │ ├── CircuitException.java │ │ │ ├── CircuitListener.java │ │ │ ├── CircuitLocker.java │ │ │ ├── CircuitMutation.java │ │ │ ├── CircuitMutator.java │ │ │ ├── CircuitMutatorImpl.java │ │ │ ├── CircuitPoints.java │ │ │ ├── CircuitState.java │ │ │ ├── CircuitTransaction.java │ │ │ ├── CircuitTransactionResult.java │ │ │ ├── CircuitWires.java │ │ │ ├── ExpressionComputer.java │ │ │ ├── PropagationPoints.java │ │ │ ├── Propagator.java │ │ │ ├── RadixOption.java │ │ │ ├── ReplacementMap.java │ │ │ ├── Simulator.java │ │ │ ├── SimulatorEvent.java │ │ │ ├── SimulatorListener.java │ │ │ ├── SimulatorTicker.java │ │ │ ├── Splitter.java │ │ │ ├── SplitterAttributes.java │ │ │ ├── SplitterDistributeItem.java │ │ │ ├── SplitterFactory.java │ │ │ ├── SplitterPainter.java │ │ │ ├── SplitterParameters.java │ │ │ ├── SubcircuitFactory.java │ │ │ ├── SubcircuitPoker.java │ │ │ ├── WidthIncompatibilityData.java │ │ │ ├── Wire.java │ │ │ ├── WireBundle.java │ │ │ ├── WireFactory.java │ │ │ ├── WireIterator.java │ │ │ ├── WireRepair.java │ │ │ ├── WireSet.java │ │ │ ├── WireThread.java │ │ │ ├── WireUtil.java │ │ │ └── appear │ │ │ │ ├── AppearanceAnchor.java │ │ │ │ ├── AppearanceElement.java │ │ │ │ ├── AppearancePort.java │ │ │ │ ├── AppearanceSvgReader.java │ │ │ │ ├── CircuitAppearance.java │ │ │ │ ├── CircuitAppearanceEvent.java │ │ │ │ ├── CircuitAppearanceListener.java │ │ │ │ ├── CircuitPins.java │ │ │ │ ├── DefaultAppearance.java │ │ │ │ └── PortManager.java │ │ │ ├── comp │ │ │ ├── AbstractComponent.java │ │ │ ├── AbstractComponentFactory.java │ │ │ ├── Component.java │ │ │ ├── ComponentDrawContext.java │ │ │ ├── ComponentEvent.java │ │ │ ├── ComponentFactory.java │ │ │ ├── ComponentListener.java │ │ │ ├── ComponentState.java │ │ │ ├── ComponentUserEvent.java │ │ │ ├── EndData.java │ │ │ ├── ManagedComponent.java │ │ │ ├── TextField.java │ │ │ ├── TextFieldCaret.java │ │ │ ├── TextFieldEvent.java │ │ │ ├── TextFieldListener.java │ │ │ └── package-info.java │ │ │ ├── data │ │ │ ├── AbstractAttributeSet.java │ │ │ ├── Attribute.java │ │ │ ├── AttributeDefaultProvider.java │ │ │ ├── AttributeEvent.java │ │ │ ├── AttributeListener.java │ │ │ ├── AttributeOption.java │ │ │ ├── AttributeOptionInterface.java │ │ │ ├── AttributeSet.java │ │ │ ├── AttributeSetImpl.java │ │ │ ├── AttributeSets.java │ │ │ ├── Attributes.java │ │ │ ├── BitWidth.java │ │ │ ├── Bounds.java │ │ │ ├── Direction.java │ │ │ ├── Location.java │ │ │ ├── Size.java │ │ │ └── Value.java │ │ │ ├── file │ │ │ ├── FileStatistics.java │ │ │ ├── LibraryEvent.java │ │ │ ├── LibraryEventSource.java │ │ │ ├── LibraryListener.java │ │ │ ├── LibraryLoader.java │ │ │ ├── LibraryManager.java │ │ │ ├── LoadFailedException.java │ │ │ ├── LoadedLibrary.java │ │ │ ├── Loader.java │ │ │ ├── LoaderException.java │ │ │ ├── LogisimFile.java │ │ │ ├── LogisimFileActions.java │ │ │ ├── MouseMappings.java │ │ │ ├── Options.java │ │ │ ├── ProjectsDirty.java │ │ │ ├── ReaderInputStream.java │ │ │ ├── ToolbarData.java │ │ │ ├── XmlCircuitReader.java │ │ │ ├── XmlIterator.java │ │ │ ├── XmlReader.java │ │ │ ├── XmlReaderException.java │ │ │ └── XmlWriter.java │ │ │ ├── gui │ │ │ ├── appear │ │ │ │ ├── AppearanceCanvas.java │ │ │ │ ├── AppearanceEditHandler.java │ │ │ │ ├── AppearanceEditPopup.java │ │ │ │ ├── AppearanceSelection.java │ │ │ │ ├── AppearanceToolbarModel.java │ │ │ │ ├── AppearanceView.java │ │ │ │ ├── CanvasActionAdapter.java │ │ │ │ ├── Clipboard.java │ │ │ │ ├── ClipboardActions.java │ │ │ │ ├── ClipboardContents.java │ │ │ │ ├── LayoutPopupManager.java │ │ │ │ ├── LayoutThumbnail.java │ │ │ │ ├── RevertAppearanceAction.java │ │ │ │ └── SelectionAction.java │ │ │ ├── generic │ │ │ │ ├── AttrTable.java │ │ │ │ ├── AttrTableModel.java │ │ │ │ ├── AttrTableModelEvent.java │ │ │ │ ├── AttrTableModelListener.java │ │ │ │ ├── AttrTableModelRow.java │ │ │ │ ├── AttrTableSetException.java │ │ │ │ ├── AttributeSetTableModel.java │ │ │ │ ├── BasicZoomModel.java │ │ │ │ ├── CanvasPane.java │ │ │ │ ├── CanvasPaneContents.java │ │ │ │ ├── CardPanel.java │ │ │ │ ├── GridPainter.java │ │ │ │ ├── LDialog.java │ │ │ │ ├── LFrame.java │ │ │ │ ├── ProjectExplorer.java │ │ │ │ ├── ProjectExplorerEvent.java │ │ │ │ ├── ProjectExplorerLibraryNode.java │ │ │ │ ├── ProjectExplorerListener.java │ │ │ │ ├── ProjectExplorerModel.java │ │ │ │ ├── ProjectExplorerToolNode.java │ │ │ │ ├── ZoomControl.java │ │ │ │ ├── ZoomModel.java │ │ │ │ └── ZoomModelListener.java │ │ │ ├── hex │ │ │ │ ├── Clip.java │ │ │ │ ├── HexFile.java │ │ │ │ └── HexFrame.java │ │ │ ├── log │ │ │ │ ├── ComponentIcon.java │ │ │ │ ├── ComponentSelector.java │ │ │ │ ├── FilePanel.java │ │ │ │ ├── LogFrame.java │ │ │ │ ├── LogPanel.java │ │ │ │ ├── LogThread.java │ │ │ │ ├── Loggable.java │ │ │ │ ├── Model.java │ │ │ │ ├── ModelEvent.java │ │ │ │ ├── ModelListener.java │ │ │ │ ├── ScrollPanel.java │ │ │ │ ├── Selection.java │ │ │ │ ├── SelectionItem.java │ │ │ │ ├── SelectionList.java │ │ │ │ ├── SelectionPanel.java │ │ │ │ ├── TablePanel.java │ │ │ │ └── ValueLog.java │ │ │ ├── main │ │ │ │ ├── AttrTableCircuitModel.java │ │ │ │ ├── AttrTableComponentModel.java │ │ │ │ ├── AttrTableSelectionModel.java │ │ │ │ ├── AttrTableToolModel.java │ │ │ │ ├── Canvas.java │ │ │ │ ├── CanvasPaintThread.java │ │ │ │ ├── CanvasPainter.java │ │ │ │ ├── CircuitJList.java │ │ │ │ ├── Clipboard.java │ │ │ │ ├── EditHandler.java │ │ │ │ ├── ExplorerToolbarModel.java │ │ │ │ ├── ExportImage.java │ │ │ │ ├── Frame.java │ │ │ │ ├── KeyboardToolSelection.java │ │ │ │ ├── LayoutEditHandler.java │ │ │ │ ├── LayoutToolbarModel.java │ │ │ │ ├── LogisimToolbarItem.java │ │ │ │ ├── MenuListener.java │ │ │ │ ├── Print.java │ │ │ │ ├── ProjectToolbarModel.java │ │ │ │ ├── Selection.java │ │ │ │ ├── SelectionActions.java │ │ │ │ ├── SelectionAttributes.java │ │ │ │ ├── SelectionBase.java │ │ │ │ ├── SelectionSave.java │ │ │ │ ├── SimulationExplorer.java │ │ │ │ ├── SimulationToolbarModel.java │ │ │ │ ├── SimulationTreeCircuitNode.java │ │ │ │ ├── SimulationTreeModel.java │ │ │ │ ├── SimulationTreeNode.java │ │ │ │ ├── SimulationTreeRenderer.java │ │ │ │ ├── StatisticsDialog.java │ │ │ │ ├── TickCounter.java │ │ │ │ ├── ToolAttributeAction.java │ │ │ │ ├── Toolbox.java │ │ │ │ ├── ToolboxManip.java │ │ │ │ └── ToolboxToolbarModel.java │ │ │ ├── menu │ │ │ │ ├── EditPopup.java │ │ │ │ ├── LogisimMenuBar.java │ │ │ │ ├── LogisimMenuItem.java │ │ │ │ ├── Menu.java │ │ │ │ ├── MenuEdit.java │ │ │ │ ├── MenuFile.java │ │ │ │ ├── MenuHelp.java │ │ │ │ ├── MenuItem.java │ │ │ │ ├── MenuItemCheckImpl.java │ │ │ │ ├── MenuItemHelper.java │ │ │ │ ├── MenuItemImpl.java │ │ │ │ ├── MenuProject.java │ │ │ │ ├── MenuSimulate.java │ │ │ │ ├── OpenRecent.java │ │ │ │ ├── Popups.java │ │ │ │ ├── ProjectCircuitActions.java │ │ │ │ ├── ProjectLibraryActions.java │ │ │ │ ├── SimulateListener.java │ │ │ │ └── WindowManagers.java │ │ │ ├── opts │ │ │ │ ├── ComboOption.java │ │ │ │ ├── MouseOptions.java │ │ │ │ ├── OptionsActions.java │ │ │ │ ├── OptionsFrame.java │ │ │ │ ├── OptionsPanel.java │ │ │ │ ├── SimulateOptions.java │ │ │ │ ├── ToolbarActions.java │ │ │ │ ├── ToolbarList.java │ │ │ │ └── ToolbarOptions.java │ │ │ ├── prefs │ │ │ │ ├── ExperimentalOptions.java │ │ │ │ ├── IntlOptions.java │ │ │ │ ├── LayoutOptions.java │ │ │ │ ├── OptionsPanel.java │ │ │ │ ├── PrefBoolean.java │ │ │ │ ├── PrefOption.java │ │ │ │ ├── PrefOptionList.java │ │ │ │ ├── PreferencesFrame.java │ │ │ │ ├── TemplateOptions.java │ │ │ │ └── WindowOptions.java │ │ │ └── start │ │ │ │ ├── About.java │ │ │ │ ├── MacOsAdapter.java │ │ │ │ ├── SplashScreen.java │ │ │ │ ├── Startup.java │ │ │ │ └── TtyInterface.java │ │ │ ├── instance │ │ │ ├── Instance.java │ │ │ ├── InstanceComponent.java │ │ │ ├── InstanceData.java │ │ │ ├── InstanceDataSingleton.java │ │ │ ├── InstanceFactory.java │ │ │ ├── InstanceLogger.java │ │ │ ├── InstanceLoggerAdapter.java │ │ │ ├── InstancePainter.java │ │ │ ├── InstancePoker.java │ │ │ ├── InstancePokerAdapter.java │ │ │ ├── InstanceState.java │ │ │ ├── InstanceStateImpl.java │ │ │ ├── InstanceTextField.java │ │ │ ├── Port.java │ │ │ └── StdAttr.java │ │ │ ├── prefs │ │ │ ├── AbstractPrefMonitor.java │ │ │ ├── AppPreferences.java │ │ │ ├── PrefMonitor.java │ │ │ ├── PrefMonitorBoolean.java │ │ │ ├── PrefMonitorDouble.java │ │ │ ├── PrefMonitorInt.java │ │ │ ├── PrefMonitorString.java │ │ │ ├── PrefMonitorStringOpts.java │ │ │ ├── RecentProjects.java │ │ │ └── Template.java │ │ │ ├── proj │ │ │ ├── Action.java │ │ │ ├── Dependencies.java │ │ │ ├── JoinedAction.java │ │ │ ├── Project.java │ │ │ ├── ProjectActions.java │ │ │ ├── ProjectEvent.java │ │ │ ├── ProjectListener.java │ │ │ └── Projects.java │ │ │ ├── std │ │ │ ├── Builtin.java │ │ │ ├── arith │ │ │ │ ├── Adder.java │ │ │ │ ├── Arithmetic.java │ │ │ │ ├── BitAdder.java │ │ │ │ ├── BitFinder.java │ │ │ │ ├── Comparator.java │ │ │ │ ├── Divider.java │ │ │ │ ├── Multiplier.java │ │ │ │ ├── Negator.java │ │ │ │ ├── Pow.java │ │ │ │ ├── Shifter.java │ │ │ │ └── Subtractor.java │ │ │ ├── base │ │ │ │ ├── Base.java │ │ │ │ ├── Text.java │ │ │ │ └── TextAttributes.java │ │ │ ├── gates │ │ │ │ ├── AbstractGate.java │ │ │ │ ├── AndGate.java │ │ │ │ ├── Buffer.java │ │ │ │ ├── CircuitBuilder.java │ │ │ │ ├── CircuitDetermination.java │ │ │ │ ├── ControlledBuffer.java │ │ │ │ ├── EvenParityGate.java │ │ │ │ ├── GateAttributeList.java │ │ │ │ ├── GateAttributes.java │ │ │ │ ├── GateFunctions.java │ │ │ │ ├── Gates.java │ │ │ │ ├── NandGate.java │ │ │ │ ├── NegateAttribute.java │ │ │ │ ├── NorGate.java │ │ │ │ ├── NotGate.java │ │ │ │ ├── OddParityGate.java │ │ │ │ ├── OrGate.java │ │ │ │ ├── PainterDin.java │ │ │ │ ├── PainterShaped.java │ │ │ │ ├── XnorGate.java │ │ │ │ └── XorGate.java │ │ │ ├── io │ │ │ │ ├── Button.java │ │ │ │ ├── DotMatrix.java │ │ │ │ ├── HexDigit.java │ │ │ │ ├── Io.java │ │ │ │ ├── Joystick.java │ │ │ │ ├── Keyboard.java │ │ │ │ ├── KeyboardData.java │ │ │ │ ├── Led.java │ │ │ │ ├── SevenSegment.java │ │ │ │ ├── Tty.java │ │ │ │ └── TtyState.java │ │ │ ├── memory │ │ │ │ ├── AbstractFlipFlop.java │ │ │ │ ├── ClockState.java │ │ │ │ ├── Counter.java │ │ │ │ ├── CounterAttributes.java │ │ │ │ ├── DFlipFlop.java │ │ │ │ ├── JKFlipFlop.java │ │ │ │ ├── Mem.java │ │ │ │ ├── MemContents.java │ │ │ │ ├── MemContentsSub.java │ │ │ │ ├── MemMenu.java │ │ │ │ ├── MemPoker.java │ │ │ │ ├── MemState.java │ │ │ │ ├── Memory.java │ │ │ │ ├── Ram.java │ │ │ │ ├── Random.java │ │ │ │ ├── Register.java │ │ │ │ ├── RegisterData.java │ │ │ │ ├── RegisterLogger.java │ │ │ │ ├── RegisterPoker.java │ │ │ │ ├── Rom.java │ │ │ │ ├── RomAttributes.java │ │ │ │ ├── RomContentsListener.java │ │ │ │ ├── SRFlipFlop.java │ │ │ │ ├── ShiftRegister.java │ │ │ │ ├── ShiftRegisterData.java │ │ │ │ ├── ShiftRegisterLogger.java │ │ │ │ ├── ShiftRegisterPoker.java │ │ │ │ └── TFlipFlop.java │ │ │ ├── plexers │ │ │ │ ├── BitSelector.java │ │ │ │ ├── Decoder.java │ │ │ │ ├── Demultiplexer.java │ │ │ │ ├── Multiplexer.java │ │ │ │ ├── Plexers.java │ │ │ │ └── PriorityEncoder.java │ │ │ └── wiring │ │ │ │ ├── BitExtender.java │ │ │ │ ├── Clock.java │ │ │ │ ├── Constant.java │ │ │ │ ├── ConstantConfigurator.java │ │ │ │ ├── DurationAttribute.java │ │ │ │ ├── Ground.java │ │ │ │ ├── Pin.java │ │ │ │ ├── PinAttributes.java │ │ │ │ ├── Power.java │ │ │ │ ├── Probe.java │ │ │ │ ├── ProbeAttributes.java │ │ │ │ ├── PullResistor.java │ │ │ │ ├── Transistor.java │ │ │ │ ├── TransmissionGate.java │ │ │ │ ├── Tunnel.java │ │ │ │ ├── TunnelAttributes.java │ │ │ │ └── Wiring.java │ │ │ ├── tools │ │ │ ├── AbstractCaret.java │ │ │ ├── AddTool.java │ │ │ ├── Caret.java │ │ │ ├── CaretEvent.java │ │ │ ├── CaretListener.java │ │ │ ├── CustomHandles.java │ │ │ ├── EditTool.java │ │ │ ├── FactoryAttributes.java │ │ │ ├── FactoryDescription.java │ │ │ ├── Library.java │ │ │ ├── MenuExtender.java │ │ │ ├── MenuTool.java │ │ │ ├── Pokable.java │ │ │ ├── PokeTool.java │ │ │ ├── PopUpLabelAction.java │ │ │ ├── SelectTool.java │ │ │ ├── SetAttributeAction.java │ │ │ ├── TextEditable.java │ │ │ ├── TextTool.java │ │ │ ├── Tool.java │ │ │ ├── ToolTipMaker.java │ │ │ ├── WireRepair.java │ │ │ ├── WireRepairData.java │ │ │ ├── WiringTool.java │ │ │ ├── key │ │ │ │ ├── BitWidthConfigurator.java │ │ │ │ ├── DirectionConfigurator.java │ │ │ │ ├── IntegerConfigurator.java │ │ │ │ ├── JoinedConfigurator.java │ │ │ │ ├── KeyConfigurationEvent.java │ │ │ │ ├── KeyConfigurationResult.java │ │ │ │ ├── KeyConfigurator.java │ │ │ │ ├── NumericConfigurator.java │ │ │ │ └── ParallelConfigurator.java │ │ │ └── move │ │ │ │ ├── AvoidanceMap.java │ │ │ │ ├── ConnectionData.java │ │ │ │ ├── Connector.java │ │ │ │ ├── ConnectorThread.java │ │ │ │ ├── MoveGesture.java │ │ │ │ ├── MoveRequest.java │ │ │ │ ├── MoveRequestListener.java │ │ │ │ ├── MoveResult.java │ │ │ │ └── SearchNode.java │ │ │ └── util │ │ │ ├── Cache.java │ │ │ ├── CollectionUtil.java │ │ │ ├── CustomAction.java │ │ │ ├── Dag.java │ │ │ ├── EventSourceWeakSupport.java │ │ │ ├── FontUtil.java │ │ │ ├── GraphicsUtil.java │ │ │ ├── HorizontalSplitPane.java │ │ │ ├── Icons.java │ │ │ ├── InputEventUtil.java │ │ │ ├── JDialogOk.java │ │ │ ├── JFileChoosers.java │ │ │ ├── JInputComponent.java │ │ │ ├── LocaleListener.java │ │ │ ├── LocaleManager.java │ │ │ ├── LocaleSelector.java │ │ │ ├── LocaleString.java │ │ │ ├── MacCompatibility.java │ │ │ ├── PropertyChangeWeakSupport.java │ │ │ ├── StringUtil.java │ │ │ ├── TableConstraints.java │ │ │ ├── TableLayout.java │ │ │ ├── TableSorter.java │ │ │ ├── VerticalSplitPane.java │ │ │ ├── WindowClosable.java │ │ │ ├── WindowMenu.java │ │ │ ├── WindowMenuItem.java │ │ │ ├── WindowMenuItemManager.java │ │ │ ├── WindowMenuManager.java │ │ │ └── ZipClassLoader.java │ │ └── connectina │ │ └── swing │ │ └── fontchooser │ │ ├── DefaultFontSelectionModel.java │ │ ├── FontChooserDialog.form │ │ ├── FontChooserDialog.java │ │ ├── FontSelectionModel.java │ │ ├── JFontChooser.form │ │ ├── JFontChooser.java │ │ ├── JFontChooserBeanDescriptor.java │ │ ├── JFontChooserBeanInfo.java │ │ └── package-info.java │ └── resources │ ├── LiberationSans-Regular.ttf │ ├── bric │ ├── ColorPicker.properties │ ├── ColorPicker_de.properties │ ├── ColorPicker_en_GB.properties │ ├── ColorPicker_es.properties │ ├── ColorPicker_fr.properties │ ├── ColorPicker_nl.properties │ ├── ColorPicker_pt.properties │ ├── ColorPicker_ru.properties │ └── ColorPicker_sp.properties │ ├── connectina │ ├── FontChooserDialog.form │ ├── FontChooserDialog.properties │ ├── FontChooserDialog_de.properties │ ├── FontChooserDialog_el.properties │ ├── FontChooserDialog_es.properties │ ├── FontChooserDialog_fr.properties │ ├── FontChooserDialog_pt.properties │ ├── FontChooserDialog_ru.properties │ ├── JFontChooser.form │ ├── JFontChooser.properties │ ├── JFontChooser_de.properties │ ├── JFontChooser_el.properties │ ├── JFontChooser_es.properties │ ├── JFontChooser_fr.properties │ ├── JFontChooser_pt.properties │ ├── JFontChooser_ru.properties │ └── image │ │ ├── FontChooser16Color.png │ │ ├── FontChooser16Mono.png │ │ ├── FontChooser32Color.png │ │ └── FontChooser32Mono.png │ ├── doc │ ├── circs │ │ ├── buildMux.circ │ │ ├── buildMuxCustom.circ │ │ ├── cpu-16bit.circ │ │ ├── io-segs.fig.gz │ │ ├── log.circ │ │ ├── myCpu.im │ │ ├── prop-weird.circ │ │ ├── tutorial-shot-labeled.svg.gz │ │ ├── tutorial-xor-circ.circ │ │ ├── tutorial-xor-diagram.fig.gz │ │ ├── tutorial-xor-table.fig.gz │ │ ├── verify.circ │ │ └── xor.circ │ ├── de │ │ ├── html │ │ │ ├── contents.html │ │ │ ├── guide │ │ │ │ ├── about │ │ │ │ │ ├── gpl.html │ │ │ │ │ ├── gpl_de.html │ │ │ │ │ └── index.html │ │ │ │ ├── analyze │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── gen.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── open.html │ │ │ │ │ └── table.html │ │ │ │ ├── attrlib │ │ │ │ │ ├── attr.html │ │ │ │ │ ├── explore.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── tool.html │ │ │ │ ├── bundles │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── splitting.html │ │ │ │ ├── index.html │ │ │ │ ├── jar │ │ │ │ │ ├── counter.html │ │ │ │ │ ├── guide.html │ │ │ │ │ ├── incr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── simpctr.html │ │ │ │ ├── log │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── selection.html │ │ │ │ │ └── table.html │ │ │ │ ├── mem │ │ │ │ │ ├── hex.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── menu.html │ │ │ │ │ └── poke.html │ │ │ │ ├── menu │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── project.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── winhelp.html │ │ │ │ ├── opts │ │ │ │ │ ├── canvas.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouse.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── prefs │ │ │ │ │ ├── cmdline.html │ │ │ │ │ ├── exp.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── intl.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── template.html │ │ │ │ │ ├── tools.html │ │ │ │ │ └── window.html │ │ │ │ ├── prop │ │ │ │ │ ├── delays.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── oscillate.html │ │ │ │ │ └── shortcome.html │ │ │ │ ├── subcirc │ │ │ │ │ ├── appear.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── debug.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── using.html │ │ │ │ ├── tutorial │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tutor-gates.html │ │ │ │ │ ├── tutor-orient.html │ │ │ │ │ ├── tutor-test.html │ │ │ │ │ ├── tutor-text.html │ │ │ │ │ └── tutor-wires.html │ │ │ │ └── verify │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multi.html │ │ │ │ │ ├── other.html │ │ │ │ │ └── sub.html │ │ │ ├── index.html │ │ │ └── libs │ │ │ │ ├── arith │ │ │ │ ├── adder.html │ │ │ │ ├── bitadder.html │ │ │ │ ├── bitfinder.html │ │ │ │ ├── comparator.html │ │ │ │ ├── divider.html │ │ │ │ ├── index.html │ │ │ │ ├── multiplier.html │ │ │ │ ├── negator.html │ │ │ │ ├── shifter.html │ │ │ │ └── subtractor.html │ │ │ │ ├── base │ │ │ │ ├── clock.html │ │ │ │ ├── edit.html │ │ │ │ ├── extender.html │ │ │ │ ├── index.html │ │ │ │ ├── label.html │ │ │ │ ├── menu.html │ │ │ │ ├── pin.html │ │ │ │ ├── poke.html │ │ │ │ ├── probe.html │ │ │ │ ├── pull.html │ │ │ │ ├── select.html │ │ │ │ ├── splitter.html │ │ │ │ ├── text.html │ │ │ │ ├── tunnel.html │ │ │ │ └── wiring.html │ │ │ │ ├── gates │ │ │ │ ├── basic.html │ │ │ │ ├── buffer.html │ │ │ │ ├── constant.html │ │ │ │ ├── controlled.html │ │ │ │ ├── index.html │ │ │ │ ├── not.html │ │ │ │ └── xor.html │ │ │ │ ├── index.html │ │ │ │ ├── io │ │ │ │ ├── 7seg.html │ │ │ │ ├── button.html │ │ │ │ ├── dotmat.html │ │ │ │ ├── hexdig.html │ │ │ │ ├── index.html │ │ │ │ ├── joystick.html │ │ │ │ ├── keyboard.html │ │ │ │ ├── led.html │ │ │ │ └── tty.html │ │ │ │ ├── legacy │ │ │ │ ├── flipflops.html │ │ │ │ ├── index.html │ │ │ │ └── register.html │ │ │ │ ├── mem │ │ │ │ ├── counter.html │ │ │ │ ├── flipflops.html │ │ │ │ ├── index.html │ │ │ │ ├── ram.html │ │ │ │ ├── random.html │ │ │ │ ├── register.html │ │ │ │ ├── rom.html │ │ │ │ └── shiftreg.html │ │ │ │ └── plexers │ │ │ │ ├── decoder.html │ │ │ │ ├── demux.html │ │ │ │ ├── index.html │ │ │ │ ├── mux.html │ │ │ │ ├── priencod.html │ │ │ │ └── selector.html │ │ └── img-guide │ │ │ ├── analyze-expr.png │ │ │ ├── analyze-min.png │ │ │ ├── analyze-out.png │ │ │ ├── analyze-table.png │ │ │ ├── analyze-var.png │ │ │ ├── attrlib-and-narrow.png │ │ │ ├── attrlib-and-replace.png │ │ │ ├── attrlib-nand-select.png │ │ │ ├── attrlib-pin-attrib.png │ │ │ ├── bundles-create.png │ │ │ ├── bundles-error.png │ │ │ ├── bundles-probe.png │ │ │ ├── bundles-splitter-circ.png │ │ │ ├── img_guide_frame │ │ │ ├── analyze-expr.png │ │ │ ├── analyze-min.png │ │ │ ├── analyze-out.png │ │ │ ├── analyze-table.png │ │ │ ├── analyze-var.png │ │ │ ├── attrlib-and-narrow.png │ │ │ ├── attrlib-and-replace.png │ │ │ ├── attrlib-nand-select.png │ │ │ ├── attrlib-pin-attrib.png │ │ │ ├── bundles-create.png │ │ │ ├── bundles-error.png │ │ │ ├── bundles-probe.png │ │ │ ├── bundles-splitter-circ.png │ │ │ ├── mem-hex.png │ │ │ ├── opts-canvas.png │ │ │ ├── opts-mouse.png │ │ │ ├── opts-simulate.png │ │ │ ├── opts-toolbar.png │ │ │ ├── prefs-exp.png │ │ │ ├── prefs-intl.png │ │ │ ├── prefs-template.png │ │ │ ├── prefs-tools.png │ │ │ ├── prop-oscillate-before.png │ │ │ ├── prop-oscillate-error.png │ │ │ ├── tutorial-shot-all.png │ │ │ ├── tutorial-shot-ands.png │ │ │ ├── tutorial-shot-blank.png │ │ │ ├── tutorial-shot-comps.png │ │ │ ├── tutorial-shot-gates.png │ │ │ ├── tutorial-shot-labeled.png │ │ │ ├── tutorial-shot-test.png │ │ │ ├── tutorial-shot-text.png │ │ │ ├── tutorial-shot-wire1.png │ │ │ └── tutorial-shot-wires.png │ │ │ ├── mem-hex.png │ │ │ ├── opts-canvas.png │ │ │ ├── opts-mouse.png │ │ │ ├── opts-simulate.png │ │ │ ├── opts-toolbar.png │ │ │ ├── prefs-exp.png │ │ │ ├── prefs-intl.png │ │ │ ├── prefs-template.png │ │ │ ├── prefs-tools.png │ │ │ ├── prop-oscillate-before.png │ │ │ ├── prop-oscillate-error.png │ │ │ ├── tutorial-shot-all.png │ │ │ ├── tutorial-shot-ands.png │ │ │ ├── tutorial-shot-blank.png │ │ │ ├── tutorial-shot-comps.png │ │ │ ├── tutorial-shot-gates.png │ │ │ ├── tutorial-shot-labeled.png │ │ │ ├── tutorial-shot-test.png │ │ │ ├── tutorial-shot-text.png │ │ │ ├── tutorial-shot-wire1.png │ │ │ └── tutorial-shot-wires.png │ ├── el │ │ └── html │ │ │ ├── contents.html │ │ │ ├── guide │ │ │ ├── about │ │ │ │ ├── gpl.html │ │ │ │ └── index.html │ │ │ ├── analyze │ │ │ │ ├── expr.html │ │ │ │ ├── gen.html │ │ │ │ ├── index.html │ │ │ │ ├── open.html │ │ │ │ └── table.html │ │ │ ├── attrlib │ │ │ │ ├── attr.html │ │ │ │ ├── explore.html │ │ │ │ ├── index.html │ │ │ │ └── tool.html │ │ │ ├── bundles │ │ │ │ ├── colors.html │ │ │ │ ├── creating.html │ │ │ │ ├── index.html │ │ │ │ └── splitting.html │ │ │ ├── index.html │ │ │ ├── jar │ │ │ │ ├── counter.html │ │ │ │ ├── guide.html │ │ │ │ ├── incr.html │ │ │ │ ├── index.html │ │ │ │ ├── library.html │ │ │ │ └── simpctr.html │ │ │ ├── log │ │ │ │ ├── file.html │ │ │ │ ├── index.html │ │ │ │ ├── selection.html │ │ │ │ └── table.html │ │ │ ├── mem │ │ │ │ ├── hex.html │ │ │ │ ├── index.html │ │ │ │ ├── menu.html │ │ │ │ └── poke.html │ │ │ ├── menu │ │ │ │ ├── edit.html │ │ │ │ ├── file.html │ │ │ │ ├── index.html │ │ │ │ ├── project.html │ │ │ │ ├── simulate.html │ │ │ │ └── winhelp.html │ │ │ ├── opts │ │ │ │ ├── index.html │ │ │ │ ├── mouse.html │ │ │ │ ├── simulate.html │ │ │ │ └── toolbar.html │ │ │ ├── prefs │ │ │ │ ├── cmdline.html │ │ │ │ ├── exp.html │ │ │ │ ├── index.html │ │ │ │ ├── intl.html │ │ │ │ ├── layout.html │ │ │ │ ├── template.html │ │ │ │ └── window.html │ │ │ ├── prop │ │ │ │ ├── delays.html │ │ │ │ ├── index.html │ │ │ │ ├── oscillate.html │ │ │ │ └── shortcome.html │ │ │ ├── subcirc │ │ │ │ ├── appear.html │ │ │ │ ├── creating.html │ │ │ │ ├── debug.html │ │ │ │ ├── index.html │ │ │ │ ├── library.html │ │ │ │ └── using.html │ │ │ ├── tutorial │ │ │ │ ├── index.html │ │ │ │ ├── tutor-gates.html │ │ │ │ ├── tutor-orient.html │ │ │ │ ├── tutor-test.html │ │ │ │ ├── tutor-text.html │ │ │ │ └── tutor-wires.html │ │ │ └── verify │ │ │ │ ├── index.html │ │ │ │ ├── multi.html │ │ │ │ ├── other.html │ │ │ │ └── sub.html │ │ │ ├── index.html │ │ │ └── libs │ │ │ ├── arith │ │ │ ├── adder.html │ │ │ ├── bitadder.html │ │ │ ├── bitfinder.html │ │ │ ├── comparator.html │ │ │ ├── divider.html │ │ │ ├── index.html │ │ │ ├── multiplier.html │ │ │ ├── negator.html │ │ │ ├── shifter.html │ │ │ └── subtractor.html │ │ │ ├── base │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ ├── label.html │ │ │ ├── menu.html │ │ │ ├── poke.html │ │ │ ├── select.html │ │ │ ├── text.html │ │ │ └── wiring.html │ │ │ ├── gates │ │ │ ├── basic.html │ │ │ ├── buffer.html │ │ │ ├── controlled.html │ │ │ ├── index.html │ │ │ ├── not.html │ │ │ └── xor.html │ │ │ ├── index.html │ │ │ ├── io │ │ │ ├── 7seg.html │ │ │ ├── button.html │ │ │ ├── dotmat.html │ │ │ ├── hexdig.html │ │ │ ├── index.html │ │ │ ├── joystick.html │ │ │ ├── keyboard.html │ │ │ ├── led.html │ │ │ └── tty.html │ │ │ ├── mem │ │ │ ├── counter.html │ │ │ ├── flipflops.html │ │ │ ├── index.html │ │ │ ├── ram.html │ │ │ ├── random.html │ │ │ ├── register.html │ │ │ ├── rom.html │ │ │ └── shiftreg.html │ │ │ ├── plexers │ │ │ ├── decoder.html │ │ │ ├── demux.html │ │ │ ├── index.html │ │ │ ├── mux.html │ │ │ ├── priencod.html │ │ │ └── selector.html │ │ │ └── wiring │ │ │ ├── clock.html │ │ │ ├── const01.html │ │ │ ├── constant.html │ │ │ ├── extender.html │ │ │ ├── index.html │ │ │ ├── pin.html │ │ │ ├── probe.html │ │ │ ├── pull.html │ │ │ ├── splitter.html │ │ │ ├── transist.html │ │ │ ├── transmis.html │ │ │ └── tunnel.html │ ├── en │ │ ├── html │ │ │ ├── contents.html │ │ │ ├── guide │ │ │ │ ├── about │ │ │ │ │ ├── gpl.html │ │ │ │ │ └── index.html │ │ │ │ ├── analyze │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── gen.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── open.html │ │ │ │ │ └── table.html │ │ │ │ ├── attrlib │ │ │ │ │ ├── attr.html │ │ │ │ │ ├── explore.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── tool.html │ │ │ │ ├── bundles │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── splitting.html │ │ │ │ ├── index.html │ │ │ │ ├── jar │ │ │ │ │ ├── counter.html │ │ │ │ │ ├── guide.html │ │ │ │ │ ├── incr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── simpctr.html │ │ │ │ ├── log │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── selection.html │ │ │ │ │ └── table.html │ │ │ │ ├── mem │ │ │ │ │ ├── hex.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── menu.html │ │ │ │ │ └── poke.html │ │ │ │ ├── menu │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── project.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── winhelp.html │ │ │ │ ├── opts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouse.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── prefs │ │ │ │ │ ├── cmdline.html │ │ │ │ │ ├── exp.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── intl.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── template.html │ │ │ │ │ └── window.html │ │ │ │ ├── prop │ │ │ │ │ ├── delays.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── oscillate.html │ │ │ │ │ └── shortcome.html │ │ │ │ ├── subcirc │ │ │ │ │ ├── appear.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── debug.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── using.html │ │ │ │ ├── tutorial │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tutor-gates.html │ │ │ │ │ ├── tutor-orient.html │ │ │ │ │ ├── tutor-test.html │ │ │ │ │ ├── tutor-text.html │ │ │ │ │ └── tutor-wires.html │ │ │ │ └── verify │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multi.html │ │ │ │ │ ├── other.html │ │ │ │ │ └── sub.html │ │ │ ├── index.html │ │ │ └── libs │ │ │ │ ├── arith │ │ │ │ ├── adder.html │ │ │ │ ├── bitadder.html │ │ │ │ ├── bitfinder.html │ │ │ │ ├── comparator.html │ │ │ │ ├── divider.html │ │ │ │ ├── index.html │ │ │ │ ├── multiplier.html │ │ │ │ ├── negator.html │ │ │ │ ├── shifter.html │ │ │ │ └── subtractor.html │ │ │ │ ├── base │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ ├── label.html │ │ │ │ ├── menu.html │ │ │ │ ├── poke.html │ │ │ │ ├── select.html │ │ │ │ ├── text.html │ │ │ │ └── wiring.html │ │ │ │ ├── gates │ │ │ │ ├── basic.html │ │ │ │ ├── buffer.html │ │ │ │ ├── controlled.html │ │ │ │ ├── index.html │ │ │ │ ├── not.html │ │ │ │ └── xor.html │ │ │ │ ├── index.html │ │ │ │ ├── io │ │ │ │ ├── 7seg.html │ │ │ │ ├── button.html │ │ │ │ ├── dotmat.html │ │ │ │ ├── hexdig.html │ │ │ │ ├── index.html │ │ │ │ ├── joystick.html │ │ │ │ ├── keyboard.html │ │ │ │ ├── led.html │ │ │ │ └── tty.html │ │ │ │ ├── mem │ │ │ │ ├── counter.html │ │ │ │ ├── flipflops.html │ │ │ │ ├── index.html │ │ │ │ ├── ram.html │ │ │ │ ├── random.html │ │ │ │ ├── register.html │ │ │ │ ├── rom.html │ │ │ │ └── shiftreg.html │ │ │ │ ├── plexers │ │ │ │ ├── decoder.html │ │ │ │ ├── demux.html │ │ │ │ ├── index.html │ │ │ │ ├── mux.html │ │ │ │ ├── priencod.html │ │ │ │ └── selector.html │ │ │ │ └── wiring │ │ │ │ ├── clock.html │ │ │ │ ├── const01.html │ │ │ │ ├── constant.html │ │ │ │ ├── extender.html │ │ │ │ ├── index.html │ │ │ │ ├── pin.html │ │ │ │ ├── probe.html │ │ │ │ ├── pull.html │ │ │ │ ├── splitter.html │ │ │ │ ├── transist.html │ │ │ │ ├── transmis.html │ │ │ │ └── tunnel.html │ │ ├── icons │ │ │ ├── 7seg.gif │ │ │ ├── adder.gif │ │ │ ├── andGate.gif │ │ │ ├── andGateRect.gif │ │ │ ├── bitSelector.gif │ │ │ ├── bitadder.gif │ │ │ ├── bitfindr.gif │ │ │ ├── bufferGate.gif │ │ │ ├── button.gif │ │ │ ├── clock.gif │ │ │ ├── comparator.gif │ │ │ ├── constant.gif │ │ │ ├── controlledBuffer.gif │ │ │ ├── controlledInverter.gif │ │ │ ├── counter.gif │ │ │ ├── dFlipFlop.gif │ │ │ ├── decoder.gif │ │ │ ├── demultiplexer.gif │ │ │ ├── dff.gif │ │ │ ├── dinAndGate.gif │ │ │ ├── dinNandGate.gif │ │ │ ├── dinNorGate.gif │ │ │ ├── dinNotGate.gif │ │ │ ├── dinOrGate.gif │ │ │ ├── dinXnorGate.gif │ │ │ ├── dinXorGate.gif │ │ │ ├── divider.gif │ │ │ ├── dotmat.gif │ │ │ ├── drawarc.gif │ │ │ ├── drawcurv.gif │ │ │ ├── drawline.gif │ │ │ ├── drawoval.gif │ │ │ ├── drawpin.gif │ │ │ ├── drawplin.gif │ │ │ ├── drawpoly.gif │ │ │ ├── drawrect.gif │ │ │ ├── drawrrct.gif │ │ │ ├── extender.gif │ │ │ ├── ground.gif │ │ │ ├── hexdig.gif │ │ │ ├── jkFlipFlop.gif │ │ │ ├── joystick.gif │ │ │ ├── keyboard.gif │ │ │ ├── led.gif │ │ │ ├── menu.gif │ │ │ ├── multiplexer.gif │ │ │ ├── multiplier.gif │ │ │ ├── nandGate.gif │ │ │ ├── nandGateRect.gif │ │ │ ├── negator.gif │ │ │ ├── norGate.gif │ │ │ ├── norGateRect.gif │ │ │ ├── notGate.gif │ │ │ ├── notGateRect.gif │ │ │ ├── orGate.gif │ │ │ ├── orGateRect.gif │ │ │ ├── parityEvenGate.gif │ │ │ ├── parityOddGate.gif │ │ │ ├── pinInput.gif │ │ │ ├── pinOutput.gif │ │ │ ├── pinOutputReversed.gif │ │ │ ├── poke.gif │ │ │ ├── power.gif │ │ │ ├── priencod.gif │ │ │ ├── probe.gif │ │ │ ├── projadd.gif │ │ │ ├── projapp.gif │ │ │ ├── projdel.gif │ │ │ ├── projdown.gif │ │ │ ├── projlayo.gif │ │ │ ├── projsim.gif │ │ │ ├── projtool.gif │ │ │ ├── projup.gif │ │ │ ├── pullrect.gif │ │ │ ├── pullshap.gif │ │ │ ├── ram.gif │ │ │ ├── random.gif │ │ │ ├── register.gif │ │ │ ├── rom.gif │ │ │ ├── select.gif │ │ │ ├── shifter.gif │ │ │ ├── shiftreg.gif │ │ │ ├── simplay.png │ │ │ ├── simstep.png │ │ │ ├── simstop.png │ │ │ ├── simtplay.png │ │ │ ├── simtstep.png │ │ │ ├── simtstop.png │ │ │ ├── splitter.gif │ │ │ ├── srFlipFlop.gif │ │ │ ├── subcirc.gif │ │ │ ├── subtractor.gif │ │ │ ├── tFlipFlop.gif │ │ │ ├── text.gif │ │ │ ├── trans0.gif │ │ │ ├── trans1.gif │ │ │ ├── transmis.gif │ │ │ ├── tty.gif │ │ │ ├── tunnel.gif │ │ │ ├── wiring.gif │ │ │ ├── xnorGate.gif │ │ │ ├── xnorGateRect.gif │ │ │ ├── xorGate.gif │ │ │ └── xorGateRect.gif │ │ ├── img-guide │ │ │ ├── about-mail.png │ │ │ ├── analyze-build.png │ │ │ ├── analyze-circuit.png │ │ │ ├── analyze-expr.png │ │ │ ├── analyze-min.png │ │ │ ├── analyze-var.png │ │ │ ├── attrlib-and-narrow.png │ │ │ ├── attrlib-and-replace.png │ │ │ ├── attrlib-nand-select.png │ │ │ ├── attrlib-pin-attrib.png │ │ │ ├── bundles-colors.png │ │ │ ├── bundles-create.png │ │ │ ├── bundles-error.png │ │ │ ├── bundles-probe.png │ │ │ ├── bundles-splitter-2way.png │ │ │ ├── bundles-splitter-circ.png │ │ │ ├── helptree-page.gif │ │ │ ├── helptree-section.gif │ │ │ ├── helptree-top.gif │ │ │ ├── log-counter.png │ │ │ ├── log-file.png │ │ │ ├── log-selection.png │ │ │ ├── log-table.png │ │ │ ├── mem-hex.png │ │ │ ├── opts-mouse.png │ │ │ ├── opts-simulate.png │ │ │ ├── opts-toolbar.png │ │ │ ├── prefs-exp.png │ │ │ ├── prefs-gates.png │ │ │ ├── prefs-intl.png │ │ │ ├── prefs-layout.png │ │ │ ├── prefs-template.png │ │ │ ├── prefs-window.png │ │ │ ├── prop-const0.png │ │ │ ├── prop-oscillate-before.png │ │ │ ├── prop-oscillate-error.png │ │ │ ├── prop-using-const0.png │ │ │ ├── screen-shot.png │ │ │ ├── subcirc-2-add.png │ │ │ ├── subcirc-2-delve.png │ │ │ ├── subcirc-2-done.png │ │ │ ├── subcirc-4-add.png │ │ │ ├── subcirc-4-delve.png │ │ │ ├── subcirc-4-done.png │ │ │ ├── subcirc-4-tip.png │ │ │ ├── subcirc-custom-appear.png │ │ │ ├── subcirc-custom-layout.png │ │ │ ├── subcirc-hierarchy.png │ │ │ ├── tutorial-shot-all.png │ │ │ ├── tutorial-shot-ands.png │ │ │ ├── tutorial-shot-blank.png │ │ │ ├── tutorial-shot-comps.png │ │ │ ├── tutorial-shot-gates.png │ │ │ ├── tutorial-shot-labeled.png │ │ │ ├── tutorial-shot-test.png │ │ │ ├── tutorial-shot-wire1.png │ │ │ ├── tutorial-shot-wires.png │ │ │ ├── tutorial-xor-circ.png │ │ │ ├── tutorial-xor-table.png │ │ │ ├── verify-adder-master.png │ │ │ ├── verify-adder-query.png │ │ │ ├── verify-adder-test.png │ │ │ └── verify-adder-test2.png │ │ └── img-libs │ │ │ ├── 7seg.png │ │ │ ├── adder.png │ │ │ ├── bitadder.png │ │ │ ├── bitfindr.png │ │ │ ├── buffer.png │ │ │ ├── button.png │ │ │ ├── clock.png │ │ │ ├── comparator.png │ │ │ ├── constant.png │ │ │ ├── controlled.png │ │ │ ├── counter.png │ │ │ ├── decoder.png │ │ │ ├── demux.png │ │ │ ├── divider.png │ │ │ ├── dotmat.png │ │ │ ├── extender.png │ │ │ ├── flipflops.png │ │ │ ├── gates-basic.png │ │ │ ├── ground.png │ │ │ ├── hexdig.png │ │ │ ├── io-segs.png │ │ │ ├── joystick.png │ │ │ ├── keyboard.png │ │ │ ├── label.png │ │ │ ├── led.png │ │ │ ├── legacy-flipflops.png │ │ │ ├── legacy-register.png │ │ │ ├── multiplier.png │ │ │ ├── mux.png │ │ │ ├── negator.png │ │ │ ├── not-rect.png │ │ │ ├── not-shaped.png │ │ │ ├── pin.png │ │ │ ├── power.png │ │ │ ├── priencod.png │ │ │ ├── probe.png │ │ │ ├── pull-rect.png │ │ │ ├── pull-shaped.png │ │ │ ├── ram.png │ │ │ ├── ramdemo.png │ │ │ ├── random.png │ │ │ ├── register.png │ │ │ ├── rom.png │ │ │ ├── selector.png │ │ │ ├── shifter.png │ │ │ ├── shiftreg.png │ │ │ ├── splitter.png │ │ │ ├── subtractor.png │ │ │ ├── trans0.png │ │ │ ├── trans1.png │ │ │ ├── transmis.png │ │ │ ├── tty.png │ │ │ ├── tunnel-demo.png │ │ │ ├── tunnel.png │ │ │ ├── wand-wor.png │ │ │ └── xor.png │ ├── es │ │ └── html │ │ │ ├── contents.html │ │ │ ├── guide │ │ │ ├── about │ │ │ │ ├── gpl.html │ │ │ │ └── index.html │ │ │ ├── analyze │ │ │ │ ├── expr.html │ │ │ │ ├── gen.html │ │ │ │ ├── index.html │ │ │ │ ├── open.html │ │ │ │ └── table.html │ │ │ ├── attrlib │ │ │ │ ├── attr.html │ │ │ │ ├── explore.html │ │ │ │ ├── index.html │ │ │ │ └── tool.html │ │ │ ├── bundles │ │ │ │ ├── colors.html │ │ │ │ ├── creating.html │ │ │ │ ├── index.html │ │ │ │ └── splitting.html │ │ │ ├── index.html │ │ │ ├── jar │ │ │ │ ├── counter.html │ │ │ │ ├── guide.html │ │ │ │ ├── incr.html │ │ │ │ ├── index.html │ │ │ │ ├── library.html │ │ │ │ └── simpctr.html │ │ │ ├── log │ │ │ │ ├── file.html │ │ │ │ ├── index.html │ │ │ │ ├── selection.html │ │ │ │ └── table.html │ │ │ ├── mem │ │ │ │ ├── hex.html │ │ │ │ ├── index.html │ │ │ │ ├── menu.html │ │ │ │ └── poke.html │ │ │ ├── menu │ │ │ │ ├── edit.html │ │ │ │ ├── file.html │ │ │ │ ├── index.html │ │ │ │ ├── project.html │ │ │ │ ├── simulate.html │ │ │ │ └── winhelp.html │ │ │ ├── opts │ │ │ │ ├── index.html │ │ │ │ ├── mouse.html │ │ │ │ ├── simulate.html │ │ │ │ └── toolbar.html │ │ │ ├── prefs │ │ │ │ ├── cmdline.html │ │ │ │ ├── exp.html │ │ │ │ ├── index.html │ │ │ │ ├── intl.html │ │ │ │ ├── layout.html │ │ │ │ ├── template.html │ │ │ │ └── window.html │ │ │ ├── prop │ │ │ │ ├── delays.html │ │ │ │ ├── index.html │ │ │ │ ├── oscillate.html │ │ │ │ └── shortcome.html │ │ │ ├── subcirc │ │ │ │ ├── appear.html │ │ │ │ ├── creating.html │ │ │ │ ├── debug.html │ │ │ │ ├── index.html │ │ │ │ ├── library.html │ │ │ │ └── using.html │ │ │ ├── tutorial │ │ │ │ ├── index.html │ │ │ │ ├── tutor-gates.html │ │ │ │ ├── tutor-orient.html │ │ │ │ ├── tutor-test.html │ │ │ │ ├── tutor-text.html │ │ │ │ └── tutor-wires.html │ │ │ └── verify │ │ │ │ ├── index.html │ │ │ │ ├── multi.html │ │ │ │ ├── other.html │ │ │ │ └── sub.html │ │ │ ├── index.html │ │ │ └── libs │ │ │ ├── arith │ │ │ ├── adder.html │ │ │ ├── bitadder.html │ │ │ ├── bitfinder.html │ │ │ ├── comparator.html │ │ │ ├── divider.html │ │ │ ├── index.html │ │ │ ├── multiplier.html │ │ │ ├── negator.html │ │ │ ├── shifter.html │ │ │ └── subtractor.html │ │ │ ├── base │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ ├── label.html │ │ │ ├── menu.html │ │ │ ├── poke.html │ │ │ ├── select.html │ │ │ ├── text.html │ │ │ └── wiring.html │ │ │ ├── gates │ │ │ ├── basic.html │ │ │ ├── buffer.html │ │ │ ├── controlled.html │ │ │ ├── index.html │ │ │ ├── not.html │ │ │ └── xor.html │ │ │ ├── index.html │ │ │ ├── io │ │ │ ├── 7seg.html │ │ │ ├── button.html │ │ │ ├── dotmat.html │ │ │ ├── hexdig.html │ │ │ ├── index.html │ │ │ ├── joystick.html │ │ │ ├── keyboard.html │ │ │ ├── led.html │ │ │ └── tty.html │ │ │ ├── mem │ │ │ ├── counter.html │ │ │ ├── flipflops.html │ │ │ ├── index.html │ │ │ ├── ram.html │ │ │ ├── random.html │ │ │ ├── register.html │ │ │ ├── rom.html │ │ │ └── shiftreg.html │ │ │ ├── plexers │ │ │ ├── decoder.html │ │ │ ├── demux.html │ │ │ ├── index.html │ │ │ ├── mux.html │ │ │ ├── priencod.html │ │ │ └── selector.html │ │ │ └── wiring │ │ │ ├── clock.html │ │ │ ├── const01.html │ │ │ ├── constant.html │ │ │ ├── extender.html │ │ │ ├── index.html │ │ │ ├── pin.html │ │ │ ├── probe.html │ │ │ ├── pull.html │ │ │ ├── splitter.html │ │ │ ├── transist.html │ │ │ ├── transmis.html │ │ │ └── tunnel.html │ ├── fr │ │ ├── html │ │ │ ├── contents.html │ │ │ ├── guide │ │ │ │ ├── about │ │ │ │ │ ├── gpl.html │ │ │ │ │ └── index.html │ │ │ │ ├── analyze │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── gen.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── open.html │ │ │ │ │ └── table.html │ │ │ │ ├── attrlib │ │ │ │ │ ├── attr.html │ │ │ │ │ ├── explore.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── tool.html │ │ │ │ ├── bundles │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── splitting.html │ │ │ │ ├── index.html │ │ │ │ ├── jar │ │ │ │ │ ├── counter.html │ │ │ │ │ ├── guide.html │ │ │ │ │ ├── incr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── simpctr.html │ │ │ │ ├── log │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── selection.html │ │ │ │ │ └── table.html │ │ │ │ ├── mem │ │ │ │ │ ├── hex.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── menu.html │ │ │ │ │ └── poke.html │ │ │ │ ├── menu │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── project.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── winhelp.html │ │ │ │ ├── opts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouse.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── prefs │ │ │ │ │ ├── cmdline.html │ │ │ │ │ ├── exp.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── intl.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── template.html │ │ │ │ │ └── window.html │ │ │ │ ├── prop │ │ │ │ │ ├── delays.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── oscillate.html │ │ │ │ │ └── shortcome.html │ │ │ │ ├── subcirc │ │ │ │ │ ├── appear.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── debug.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── using.html │ │ │ │ ├── tutorial │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tutor-gates.html │ │ │ │ │ ├── tutor-orient.html │ │ │ │ │ ├── tutor-test.html │ │ │ │ │ ├── tutor-text.html │ │ │ │ │ └── tutor-wires.html │ │ │ │ └── verify │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multi.html │ │ │ │ │ ├── other.html │ │ │ │ │ └── sub.html │ │ │ ├── index.html │ │ │ └── libs │ │ │ │ ├── arith │ │ │ │ ├── adder.html │ │ │ │ ├── bitadder.html │ │ │ │ ├── bitfinder.html │ │ │ │ ├── comparator.html │ │ │ │ ├── divider.html │ │ │ │ ├── index.html │ │ │ │ ├── multiplier.html │ │ │ │ ├── negator.html │ │ │ │ ├── shifter.html │ │ │ │ └── subtractor.html │ │ │ │ ├── base │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ ├── label.html │ │ │ │ ├── menu.html │ │ │ │ ├── poke.html │ │ │ │ ├── select.html │ │ │ │ ├── text.html │ │ │ │ └── wiring.html │ │ │ │ ├── gates │ │ │ │ ├── basic.html │ │ │ │ ├── buffer.html │ │ │ │ ├── controlled.html │ │ │ │ ├── index.html │ │ │ │ ├── not.html │ │ │ │ └── xor.html │ │ │ │ ├── index.html │ │ │ │ ├── io │ │ │ │ ├── 7seg.html │ │ │ │ ├── button.html │ │ │ │ ├── dotmat.html │ │ │ │ ├── hexdig.html │ │ │ │ ├── index.html │ │ │ │ ├── joystick.html │ │ │ │ ├── keyboard.html │ │ │ │ ├── led.html │ │ │ │ └── tty.html │ │ │ │ ├── mem │ │ │ │ ├── counter.html │ │ │ │ ├── flipflops.html │ │ │ │ ├── index.html │ │ │ │ ├── ram.html │ │ │ │ ├── random.html │ │ │ │ ├── register.html │ │ │ │ ├── rom.html │ │ │ │ └── shiftreg.html │ │ │ │ ├── plexers │ │ │ │ ├── decoder.html │ │ │ │ ├── demux.html │ │ │ │ ├── index.html │ │ │ │ ├── mux.html │ │ │ │ ├── priencod.html │ │ │ │ └── selector.html │ │ │ │ └── wiring │ │ │ │ ├── clock.html │ │ │ │ ├── const01.html │ │ │ │ ├── constant.html │ │ │ │ ├── extender.html │ │ │ │ ├── index.html │ │ │ │ ├── pin.html │ │ │ │ ├── probe.html │ │ │ │ ├── pull.html │ │ │ │ ├── splitter.html │ │ │ │ ├── transist.html │ │ │ │ ├── transmis.html │ │ │ │ └── tunnel.html │ │ ├── icons │ │ │ ├── 7seg.gif │ │ │ ├── adder.gif │ │ │ ├── andGate.gif │ │ │ ├── andGateRect.gif │ │ │ ├── bitSelector.gif │ │ │ ├── bitadder.gif │ │ │ ├── bitfindr.gif │ │ │ ├── bufferGate.gif │ │ │ ├── button.gif │ │ │ ├── clock.gif │ │ │ ├── comparator.gif │ │ │ ├── constant.gif │ │ │ ├── controlledBuffer.gif │ │ │ ├── controlledInverter.gif │ │ │ ├── counter.gif │ │ │ ├── dFlipFlop.gif │ │ │ ├── decoder.gif │ │ │ ├── demultiplexer.gif │ │ │ ├── dff.gif │ │ │ ├── dinAndGate.gif │ │ │ ├── dinNandGate.gif │ │ │ ├── dinNorGate.gif │ │ │ ├── dinNotGate.gif │ │ │ ├── dinOrGate.gif │ │ │ ├── dinXnorGate.gif │ │ │ ├── dinXorGate.gif │ │ │ ├── divider.gif │ │ │ ├── dotmat.gif │ │ │ ├── drawarc.gif │ │ │ ├── drawcurv.gif │ │ │ ├── drawline.gif │ │ │ ├── drawoval.gif │ │ │ ├── drawpin.gif │ │ │ ├── drawplin.gif │ │ │ ├── drawpoly.gif │ │ │ ├── drawrect.gif │ │ │ ├── drawrrct.gif │ │ │ ├── extender.gif │ │ │ ├── ground.gif │ │ │ ├── hexdig.gif │ │ │ ├── jkFlipFlop.gif │ │ │ ├── joystick.gif │ │ │ ├── keyboard.gif │ │ │ ├── led.gif │ │ │ ├── menu.gif │ │ │ ├── multiplexer.gif │ │ │ ├── multiplier.gif │ │ │ ├── nandGate.gif │ │ │ ├── nandGateRect.gif │ │ │ ├── negator.gif │ │ │ ├── norGate.gif │ │ │ ├── norGateRect.gif │ │ │ ├── notGate.gif │ │ │ ├── notGateRect.gif │ │ │ ├── orGate.gif │ │ │ ├── orGateRect.gif │ │ │ ├── parityEvenGate.gif │ │ │ ├── parityOddGate.gif │ │ │ ├── pinInput.gif │ │ │ ├── pinOutput.gif │ │ │ ├── pinOutputReversed.gif │ │ │ ├── poke.gif │ │ │ ├── power.gif │ │ │ ├── priencod.gif │ │ │ ├── probe.gif │ │ │ ├── projadd.gif │ │ │ ├── projapp.gif │ │ │ ├── projdel.gif │ │ │ ├── projdown.gif │ │ │ ├── projlayo.gif │ │ │ ├── projsim.gif │ │ │ ├── projtool.gif │ │ │ ├── projup.gif │ │ │ ├── pullrect.gif │ │ │ ├── pullshap.gif │ │ │ ├── ram.gif │ │ │ ├── random.gif │ │ │ ├── register.gif │ │ │ ├── rom.gif │ │ │ ├── select.gif │ │ │ ├── shifter.gif │ │ │ ├── shiftreg.gif │ │ │ ├── simplay.png │ │ │ ├── simstep.png │ │ │ ├── simstop.png │ │ │ ├── simtplay.png │ │ │ ├── simtstep.png │ │ │ ├── simtstop.png │ │ │ ├── splitter.gif │ │ │ ├── srFlipFlop.gif │ │ │ ├── subcirc.gif │ │ │ ├── subtractor.gif │ │ │ ├── tFlipFlop.gif │ │ │ ├── text.gif │ │ │ ├── trans0.gif │ │ │ ├── trans1.gif │ │ │ ├── transmis.gif │ │ │ ├── tty.gif │ │ │ ├── tunnel.gif │ │ │ ├── wiring.gif │ │ │ ├── xnorGate.gif │ │ │ ├── xnorGateRect.gif │ │ │ ├── xorGate.gif │ │ │ └── xorGateRect.gif │ │ ├── img-guide │ │ │ ├── about-mail.png │ │ │ ├── analyze-build.png │ │ │ ├── analyze-circuit.png │ │ │ ├── analyze-expr.png │ │ │ ├── analyze-min.png │ │ │ ├── analyze-var.png │ │ │ ├── attrlib-and-narrow.png │ │ │ ├── attrlib-and-replace.png │ │ │ ├── attrlib-nand-select.png │ │ │ ├── attrlib-pin-attrib.png │ │ │ ├── bundles-colors.png │ │ │ ├── bundles-create.png │ │ │ ├── bundles-error.png │ │ │ ├── bundles-probe.png │ │ │ ├── bundles-splitter-2way.png │ │ │ ├── bundles-splitter-circ.png │ │ │ ├── helptree-page.gif │ │ │ ├── helptree-section.gif │ │ │ ├── helptree-top.gif │ │ │ ├── log-counter.png │ │ │ ├── log-file.png │ │ │ ├── log-selection.png │ │ │ ├── log-table.png │ │ │ ├── mem-hex.png │ │ │ ├── opts-mouse.png │ │ │ ├── opts-simulate.png │ │ │ ├── opts-toolbar.png │ │ │ ├── prefs-exp.png │ │ │ ├── prefs-gates.png │ │ │ ├── prefs-intl.png │ │ │ ├── prefs-layout.png │ │ │ ├── prefs-template.png │ │ │ ├── prefs-window.png │ │ │ ├── prop-const0.png │ │ │ ├── prop-oscillate-before.png │ │ │ ├── prop-oscillate-error.png │ │ │ ├── prop-using-const0.png │ │ │ ├── screen-shot.png │ │ │ ├── subcirc-2-add.png │ │ │ ├── subcirc-2-delve.png │ │ │ ├── subcirc-2-done.png │ │ │ ├── subcirc-4-add.png │ │ │ ├── subcirc-4-delve.png │ │ │ ├── subcirc-4-done.png │ │ │ ├── subcirc-4-tip.png │ │ │ ├── subcirc-custom-appear.png │ │ │ ├── subcirc-custom-layout.png │ │ │ ├── subcirc-hierarchy.png │ │ │ ├── tutorial-shot-all.png │ │ │ ├── tutorial-shot-ands.png │ │ │ ├── tutorial-shot-blank.png │ │ │ ├── tutorial-shot-comps.png │ │ │ ├── tutorial-shot-gates.png │ │ │ ├── tutorial-shot-labeled.png │ │ │ ├── tutorial-shot-test.png │ │ │ ├── tutorial-shot-wire1.png │ │ │ ├── tutorial-shot-wires.png │ │ │ ├── tutorial-xor-circ.png │ │ │ ├── tutorial-xor-table.png │ │ │ ├── verify-adder-master.png │ │ │ ├── verify-adder-query.png │ │ │ ├── verify-adder-test.png │ │ │ └── verify-adder-test2.png │ │ └── img-libs │ │ │ ├── 7seg.png │ │ │ ├── adder.png │ │ │ ├── bitadder.png │ │ │ ├── bitfindr.png │ │ │ ├── buffer.png │ │ │ ├── button.png │ │ │ ├── clock.png │ │ │ ├── comparator.png │ │ │ ├── constant.png │ │ │ ├── controlled.png │ │ │ ├── counter.png │ │ │ ├── decoder.png │ │ │ ├── demux.png │ │ │ ├── divider.png │ │ │ ├── dotmat.png │ │ │ ├── extender.png │ │ │ ├── flipflops.png │ │ │ ├── gates-basic.png │ │ │ ├── ground.png │ │ │ ├── hexdig.png │ │ │ ├── io-segs.png │ │ │ ├── joystick.png │ │ │ ├── keyboard.png │ │ │ ├── label.png │ │ │ ├── led.png │ │ │ ├── legacy-flipflops.png │ │ │ ├── legacy-register.png │ │ │ ├── multiplier.png │ │ │ ├── mux.png │ │ │ ├── negator.png │ │ │ ├── not-rect.png │ │ │ ├── not-shaped.png │ │ │ ├── pin.png │ │ │ ├── power.png │ │ │ ├── priencod.png │ │ │ ├── probe.png │ │ │ ├── pull-rect.png │ │ │ ├── pull-shaped.png │ │ │ ├── ram.png │ │ │ ├── ramdemo.png │ │ │ ├── random.png │ │ │ ├── register.png │ │ │ ├── rom.png │ │ │ ├── selector.png │ │ │ ├── shifter.png │ │ │ ├── shiftreg.png │ │ │ ├── splitter.png │ │ │ ├── subtractor.png │ │ │ ├── trans0.png │ │ │ ├── trans1.png │ │ │ ├── transmis.png │ │ │ ├── tty.png │ │ │ ├── tunnel-demo.png │ │ │ ├── tunnel.png │ │ │ ├── wand-wor.png │ │ │ └── xor.png │ ├── pt │ │ └── html │ │ │ ├── contents.html │ │ │ ├── guide │ │ │ ├── about │ │ │ │ ├── gpl.html │ │ │ │ ├── index.html │ │ │ │ └── mail.png │ │ │ ├── analyze │ │ │ │ ├── combexpr.png │ │ │ │ ├── combmin.png │ │ │ │ ├── combvar.png │ │ │ │ ├── expr.html │ │ │ │ ├── gen.html │ │ │ │ ├── index.html │ │ │ │ ├── open.html │ │ │ │ └── table.html │ │ │ ├── attrlib │ │ │ │ ├── and-narrow.png │ │ │ │ ├── and-replace.png │ │ │ │ ├── attr.html │ │ │ │ ├── explore.html │ │ │ │ ├── index.html │ │ │ │ ├── nand-select.png │ │ │ │ ├── pin-attrib.png │ │ │ │ └── tool.html │ │ │ ├── bundles │ │ │ │ ├── colors.html │ │ │ │ ├── colors.png │ │ │ │ ├── create.png │ │ │ │ ├── creating.html │ │ │ │ ├── error.png │ │ │ │ ├── index.html │ │ │ │ ├── probe.png │ │ │ │ ├── splitter-2way.png │ │ │ │ ├── splitter-circ.png │ │ │ │ └── splitting.html │ │ │ ├── index.html │ │ │ ├── jar │ │ │ │ ├── counter.html │ │ │ │ ├── guide.html │ │ │ │ ├── incr.html │ │ │ │ ├── index.html │ │ │ │ ├── library.html │ │ │ │ └── simpctr.html │ │ │ ├── log │ │ │ │ ├── counter.png │ │ │ │ ├── file.html │ │ │ │ ├── file.png │ │ │ │ ├── index.html │ │ │ │ ├── selection.html │ │ │ │ ├── selection.png │ │ │ │ ├── table.html │ │ │ │ └── table.png │ │ │ ├── mem │ │ │ │ ├── hex.html │ │ │ │ ├── hex.png │ │ │ │ ├── index.html │ │ │ │ ├── menu.html │ │ │ │ └── poke.html │ │ │ ├── menu │ │ │ │ ├── edit.html │ │ │ │ ├── file.html │ │ │ │ ├── index.html │ │ │ │ ├── project.html │ │ │ │ ├── simulate.html │ │ │ │ └── winhelp.html │ │ │ ├── opts │ │ │ │ ├── canvas.html │ │ │ │ ├── canvas.png │ │ │ │ ├── index.html │ │ │ │ ├── latch.png │ │ │ │ ├── mouse.html │ │ │ │ ├── mouse.png │ │ │ │ ├── simulate.html │ │ │ │ ├── simulate.png │ │ │ │ ├── toolbar.html │ │ │ │ └── toolbar.png │ │ │ ├── prefs │ │ │ │ ├── cmdline.html │ │ │ │ ├── exp.html │ │ │ │ ├── exp.png │ │ │ │ ├── gates.png │ │ │ │ ├── index.html │ │ │ │ ├── intl.html │ │ │ │ ├── intl.png │ │ │ │ ├── template.html │ │ │ │ ├── template.png │ │ │ │ ├── tools.html │ │ │ │ └── tools.png │ │ │ ├── prop │ │ │ │ ├── const0.png │ │ │ │ ├── delays.html │ │ │ │ ├── index.html │ │ │ │ ├── oscillate-before.png │ │ │ │ ├── oscillate-error.png │ │ │ │ ├── oscillate.html │ │ │ │ ├── shortcome.html │ │ │ │ ├── using-const0.png │ │ │ │ └── weird.xml │ │ │ ├── subcirc │ │ │ │ ├── 2-add.png │ │ │ │ ├── 2-delve.png │ │ │ │ ├── 2-done.png │ │ │ │ ├── 4-add.png │ │ │ │ ├── 4-delve.png │ │ │ │ ├── 4-done.png │ │ │ │ ├── 4-tip.png │ │ │ │ ├── appear.html │ │ │ │ ├── creating.html │ │ │ │ ├── custom-appear.png │ │ │ │ ├── custom-layout.png │ │ │ │ ├── debug.html │ │ │ │ ├── index.html │ │ │ │ ├── library.html │ │ │ │ └── using.html │ │ │ ├── tutorial │ │ │ │ ├── index.html │ │ │ │ ├── shot-all.png │ │ │ │ ├── shot-ands.png │ │ │ │ ├── shot-blank.png │ │ │ │ ├── shot-comps.png │ │ │ │ ├── shot-gates.png │ │ │ │ ├── shot-labeled.png │ │ │ │ ├── shot-labeled.svg.gz │ │ │ │ ├── shot-test.png │ │ │ │ ├── shot-text.png │ │ │ │ ├── shot-wire1.png │ │ │ │ ├── shot-wires.png │ │ │ │ ├── tutor-gates.html │ │ │ │ ├── tutor-orient.html │ │ │ │ ├── tutor-test.html │ │ │ │ ├── tutor-text.html │ │ │ │ ├── tutor-wires.html │ │ │ │ ├── xor-circ.fig.gz │ │ │ │ ├── xor-circ.png │ │ │ │ ├── xor-table.fig.gz │ │ │ │ ├── xor-table.png │ │ │ │ └── xorDemo.xml │ │ │ └── verify │ │ │ │ ├── adder-master.png │ │ │ │ ├── adder-query.png │ │ │ │ ├── adder-test.png │ │ │ │ ├── adder-test2.png │ │ │ │ ├── index.html │ │ │ │ ├── multi.html │ │ │ │ ├── other.html │ │ │ │ └── sub.html │ │ │ ├── icons │ │ │ ├── 7seg.gif │ │ │ ├── adder.gif │ │ │ ├── andGate.gif │ │ │ ├── andGateRect.gif │ │ │ ├── bitSelector.gif │ │ │ ├── bitadder.gif │ │ │ ├── bitfindr.gif │ │ │ ├── bufferGate.gif │ │ │ ├── button.gif │ │ │ ├── clock.gif │ │ │ ├── comparator.gif │ │ │ ├── constant.gif │ │ │ ├── controlledBuffer.gif │ │ │ ├── controlledInverter.gif │ │ │ ├── counter.gif │ │ │ ├── dFlipFlop.gif │ │ │ ├── decoder.gif │ │ │ ├── demultiplexer.gif │ │ │ ├── dff.gif │ │ │ ├── dinAndGate.gif │ │ │ ├── dinNandGate.gif │ │ │ ├── dinNorGate.gif │ │ │ ├── dinNotGate.gif │ │ │ ├── dinOrGate.gif │ │ │ ├── dinXnorGate.gif │ │ │ ├── dinXorGate.gif │ │ │ ├── divider.gif │ │ │ ├── dotmat.gif │ │ │ ├── drawarc.gif │ │ │ ├── drawcurv.gif │ │ │ ├── drawline.gif │ │ │ ├── drawoval.gif │ │ │ ├── drawpin.gif │ │ │ ├── drawplin.gif │ │ │ ├── drawpoly.gif │ │ │ ├── drawrect.gif │ │ │ ├── drawrrct.gif │ │ │ ├── extender.gif │ │ │ ├── hexdig.gif │ │ │ ├── jkFlipFlop.gif │ │ │ ├── joystick.gif │ │ │ ├── keyboard.gif │ │ │ ├── led.gif │ │ │ ├── menu.gif │ │ │ ├── multiplexer.gif │ │ │ ├── multiplier.gif │ │ │ ├── nandGate.gif │ │ │ ├── nandGateRect.gif │ │ │ ├── negator.gif │ │ │ ├── norGate.gif │ │ │ ├── norGateRect.gif │ │ │ ├── notGate.gif │ │ │ ├── notGateRect.gif │ │ │ ├── orGate.gif │ │ │ ├── orGateRect.gif │ │ │ ├── parityEvenGate.gif │ │ │ ├── parityOddGate.gif │ │ │ ├── pinInput.gif │ │ │ ├── pinOutput.gif │ │ │ ├── pinOutputReversed.gif │ │ │ ├── poke.gif │ │ │ ├── priencod.gif │ │ │ ├── probe.gif │ │ │ ├── projadd.gif │ │ │ ├── projapp.gif │ │ │ ├── projdel.gif │ │ │ ├── projdown.gif │ │ │ ├── projlayo.gif │ │ │ ├── projup.gif │ │ │ ├── pullrect.gif │ │ │ ├── pullshap.gif │ │ │ ├── ram.gif │ │ │ ├── random.gif │ │ │ ├── register.gif │ │ │ ├── rom.gif │ │ │ ├── select.gif │ │ │ ├── shifter.gif │ │ │ ├── shiftreg.gif │ │ │ ├── splitter.gif │ │ │ ├── srFlipFlop.gif │ │ │ ├── subcirc.gif │ │ │ ├── subtractor.gif │ │ │ ├── tFlipFlop.gif │ │ │ ├── text.gif │ │ │ ├── tty.gif │ │ │ ├── tunnel.gif │ │ │ ├── wiring.gif │ │ │ ├── xnorGate.gif │ │ │ ├── xnorGateRect.gif │ │ │ ├── xorGate.gif │ │ │ └── xorGateRect.gif │ │ │ ├── images │ │ │ ├── chapTopic.gif │ │ │ ├── screen-shot.png │ │ │ ├── topic.gif │ │ │ └── toplevel.gif │ │ │ ├── index.html │ │ │ └── libs │ │ │ ├── arith │ │ │ ├── adder.html │ │ │ ├── bitadder.html │ │ │ ├── bitfinder.html │ │ │ ├── comparator.html │ │ │ ├── divider.html │ │ │ ├── index.html │ │ │ ├── multiplier.html │ │ │ ├── negator.html │ │ │ ├── shifter.html │ │ │ └── subtractor.html │ │ │ ├── base │ │ │ ├── clock.html │ │ │ ├── edit.html │ │ │ ├── extender.html │ │ │ ├── index.html │ │ │ ├── label.html │ │ │ ├── menu.html │ │ │ ├── pin.html │ │ │ ├── poke.html │ │ │ ├── probe.html │ │ │ ├── pull.html │ │ │ ├── select.html │ │ │ ├── splitter.html │ │ │ ├── text.html │ │ │ ├── tunnel.html │ │ │ └── wiring.html │ │ │ ├── gates │ │ │ ├── basic.html │ │ │ ├── buffer.html │ │ │ ├── constant.html │ │ │ ├── controlled.html │ │ │ ├── index.html │ │ │ ├── not.html │ │ │ └── xor.html │ │ │ ├── images │ │ │ ├── 7seg.png │ │ │ ├── adder.png │ │ │ ├── basegate.png │ │ │ ├── basic.png │ │ │ ├── bitadder.png │ │ │ ├── bitfindr.png │ │ │ ├── buffer.png │ │ │ ├── button.png │ │ │ ├── clock.png │ │ │ ├── comparator.png │ │ │ ├── constant.png │ │ │ ├── controlled.png │ │ │ ├── counter.png │ │ │ ├── decoder.png │ │ │ ├── demux.png │ │ │ ├── divider.png │ │ │ ├── dotmat.png │ │ │ ├── extender.png │ │ │ ├── flipflops.png │ │ │ ├── hexdig.png │ │ │ ├── joystick.png │ │ │ ├── keyboard.png │ │ │ ├── label.png │ │ │ ├── led.png │ │ │ ├── legacy-flipflops.png │ │ │ ├── legacy-register.png │ │ │ ├── multiplier.png │ │ │ ├── mux.png │ │ │ ├── negator.png │ │ │ ├── not.png │ │ │ ├── pin.png │ │ │ ├── priencod.png │ │ │ ├── probe.png │ │ │ ├── pull-rect.png │ │ │ ├── pull-shaped.png │ │ │ ├── ram.png │ │ │ ├── ramdemo.png │ │ │ ├── random.png │ │ │ ├── register.png │ │ │ ├── rom.png │ │ │ ├── selector.png │ │ │ ├── shifter.png │ │ │ ├── shiftreg.png │ │ │ ├── splitter.png │ │ │ ├── subtractor.png │ │ │ ├── tty.png │ │ │ ├── tunnel-demo.png │ │ │ ├── tunnel.png │ │ │ └── xor.png │ │ │ ├── index.html │ │ │ ├── io │ │ │ ├── 7seg.html │ │ │ ├── button.html │ │ │ ├── dotmat.html │ │ │ ├── hexdig.html │ │ │ ├── index.html │ │ │ ├── joystick.html │ │ │ ├── keyboard.html │ │ │ ├── led.html │ │ │ ├── segs.fig.gz │ │ │ ├── segs.png │ │ │ └── tty.html │ │ │ ├── legacy │ │ │ ├── flipflops.html │ │ │ ├── index.html │ │ │ └── register.html │ │ │ ├── mem │ │ │ ├── counter.html │ │ │ ├── flipflops.html │ │ │ ├── index.html │ │ │ ├── ram.html │ │ │ ├── random.html │ │ │ ├── register.html │ │ │ ├── rom.html │ │ │ └── shiftreg.html │ │ │ └── plexers │ │ │ ├── decoder.html │ │ │ ├── demux.html │ │ │ ├── index.html │ │ │ ├── mux.html │ │ │ ├── priencod.html │ │ │ └── selector.html │ ├── ru │ │ ├── html │ │ │ ├── contents.html │ │ │ ├── guide │ │ │ │ ├── about │ │ │ │ │ ├── gpl.html │ │ │ │ │ └── index.html │ │ │ │ ├── analyze │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── gen.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── open.html │ │ │ │ │ └── table.html │ │ │ │ ├── attrlib │ │ │ │ │ ├── attr.html │ │ │ │ │ ├── explore.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── tool.html │ │ │ │ ├── bundles │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── splitting.html │ │ │ │ ├── index.html │ │ │ │ ├── jar │ │ │ │ │ ├── counter.html │ │ │ │ │ ├── guide.html │ │ │ │ │ ├── incr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── simpctr.html │ │ │ │ ├── log │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── selection.html │ │ │ │ │ └── table.html │ │ │ │ ├── mem │ │ │ │ │ ├── hex.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── menu.html │ │ │ │ │ └── poke.html │ │ │ │ ├── menu │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── file.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── project.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── winhelp.html │ │ │ │ ├── opts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouse.html │ │ │ │ │ ├── simulate.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── prefs │ │ │ │ │ ├── cmdline.html │ │ │ │ │ ├── exp.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── intl.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── template.html │ │ │ │ │ └── window.html │ │ │ │ ├── prop │ │ │ │ │ ├── delays.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── oscillate.html │ │ │ │ │ └── shortcome.html │ │ │ │ ├── subcirc │ │ │ │ │ ├── appear.html │ │ │ │ │ ├── creating.html │ │ │ │ │ ├── debug.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── library.html │ │ │ │ │ └── using.html │ │ │ │ ├── tutorial │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tutor-gates.html │ │ │ │ │ ├── tutor-orient.html │ │ │ │ │ ├── tutor-test.html │ │ │ │ │ ├── tutor-text.html │ │ │ │ │ └── tutor-wires.html │ │ │ │ └── verify │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multi.html │ │ │ │ │ ├── other.html │ │ │ │ │ └── sub.html │ │ │ ├── index.html │ │ │ └── libs │ │ │ │ ├── arith │ │ │ │ ├── adder.html │ │ │ │ ├── bitadder.html │ │ │ │ ├── bitfinder.html │ │ │ │ ├── comparator.html │ │ │ │ ├── divider.html │ │ │ │ ├── index.html │ │ │ │ ├── multiplier.html │ │ │ │ ├── negator.html │ │ │ │ ├── shifter.html │ │ │ │ └── subtractor.html │ │ │ │ ├── base │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ ├── label.html │ │ │ │ ├── menu.html │ │ │ │ ├── poke.html │ │ │ │ ├── select.html │ │ │ │ ├── text.html │ │ │ │ └── wiring.html │ │ │ │ ├── gates │ │ │ │ ├── basic.html │ │ │ │ ├── buffer.html │ │ │ │ ├── controlled.html │ │ │ │ ├── index.html │ │ │ │ ├── not.html │ │ │ │ └── xor.html │ │ │ │ ├── index.html │ │ │ │ ├── io │ │ │ │ ├── 7seg.html │ │ │ │ ├── button.html │ │ │ │ ├── dotmat.html │ │ │ │ ├── hexdig.html │ │ │ │ ├── index.html │ │ │ │ ├── joystick.html │ │ │ │ ├── keyboard.html │ │ │ │ ├── led.html │ │ │ │ └── tty.html │ │ │ │ ├── mem │ │ │ │ ├── counter.html │ │ │ │ ├── flipflops.html │ │ │ │ ├── index.html │ │ │ │ ├── ram.html │ │ │ │ ├── random.html │ │ │ │ ├── register.html │ │ │ │ ├── rom.html │ │ │ │ └── shiftreg.html │ │ │ │ ├── plexers │ │ │ │ ├── decoder.html │ │ │ │ ├── demux.html │ │ │ │ ├── index.html │ │ │ │ ├── mux.html │ │ │ │ ├── priencod.html │ │ │ │ └── selector.html │ │ │ │ └── wiring │ │ │ │ ├── clock.html │ │ │ │ ├── const01.html │ │ │ │ ├── constant.html │ │ │ │ ├── extender.html │ │ │ │ ├── index.html │ │ │ │ ├── pin.html │ │ │ │ ├── probe.html │ │ │ │ ├── pull.html │ │ │ │ ├── splitter.html │ │ │ │ ├── transist.html │ │ │ │ ├── transmis.html │ │ │ │ └── tunnel.html │ │ ├── img-guide │ │ │ ├── analyze-build.png │ │ │ ├── analyze-expr.png │ │ │ ├── analyze-min.png │ │ │ ├── analyze-var.png │ │ │ ├── attrlib-and-narrow.png │ │ │ ├── attrlib-and-replace.png │ │ │ ├── attrlib-nand-select.png │ │ │ ├── attrlib-pin-attrib.png │ │ │ ├── bundles-create.png │ │ │ ├── bundles-error.png │ │ │ ├── bundles-probe.png │ │ │ ├── bundles-splitter-circ.png │ │ │ ├── log-file.png │ │ │ ├── log-selection.png │ │ │ ├── log-table.png │ │ │ ├── mem-hex.png │ │ │ ├── opts-mouse.png │ │ │ ├── opts-simulate.png │ │ │ ├── opts-toolbar.png │ │ │ ├── prefs-exp.png │ │ │ ├── prefs-intl.png │ │ │ ├── prefs-layout.png │ │ │ ├── prefs-template.png │ │ │ ├── prefs-window.png │ │ │ ├── prop-oscillate-before.png │ │ │ ├── prop-oscillate-error.png │ │ │ ├── screen-shot.png │ │ │ ├── subcirc-2-add.png │ │ │ ├── subcirc-2-delve.png │ │ │ ├── subcirc-2-done.png │ │ │ ├── subcirc-4-add.png │ │ │ ├── subcirc-4-delve.png │ │ │ ├── subcirc-4-done.png │ │ │ ├── subcirc-4-tip.png │ │ │ ├── subcirc-custom-appear.png │ │ │ ├── subcirc-custom-layout.png │ │ │ ├── subcirc-hierarchy.png │ │ │ ├── tutorial-shot-all.png │ │ │ ├── tutorial-shot-ands.png │ │ │ ├── tutorial-shot-blank.png │ │ │ ├── tutorial-shot-comps.png │ │ │ ├── tutorial-shot-gates.png │ │ │ ├── tutorial-shot-labeled.png │ │ │ ├── tutorial-shot-test.png │ │ │ ├── tutorial-shot-text.png │ │ │ ├── tutorial-shot-wire1.png │ │ │ └── tutorial-shot-wires.png │ │ ├── jhindexer-stops.txt │ │ └── jhindexer.cfg │ └── support │ │ ├── base-contents.xml │ │ ├── base-doc.hs │ │ ├── base-map.jhm │ │ └── www │ │ ├── closed.gif │ │ ├── docstyle.css │ │ ├── list.gif │ │ ├── open.gif │ │ ├── simpletree.css │ │ └── simpletreemenu.js │ └── logisim │ ├── de │ ├── analyze.properties │ ├── circuit.properties │ ├── data.properties │ ├── draw.properties │ ├── file.properties │ ├── gui.properties │ ├── hex.properties │ ├── legacy.properties │ ├── log.properties │ ├── menu.properties │ ├── opts.properties │ ├── prefs.properties │ ├── proj.properties │ ├── start.properties │ ├── std.properties │ ├── tools.properties │ └── util.properties │ ├── default.templ │ ├── drawing.svg │ ├── el │ ├── analyze.properties │ ├── circuit.properties │ ├── data.properties │ ├── draw.properties │ ├── file.properties │ ├── gui.properties │ ├── hex.properties │ ├── log.properties │ ├── menu.properties │ ├── opts.properties │ ├── prefs.properties │ ├── proj.properties │ ├── start.properties │ ├── std.properties │ ├── tools.properties │ └── util.properties │ ├── en │ ├── analyze.properties │ ├── circuit.properties │ ├── data.properties │ ├── draw.properties │ ├── file.properties │ ├── gui.properties │ ├── hex.properties │ ├── log.properties │ ├── menu.properties │ ├── opts.properties │ ├── prefs.properties │ ├── proj.properties │ ├── start.properties │ ├── std.properties │ ├── tools.properties │ └── util.properties │ ├── es │ ├── analyze.properties │ ├── circuit.properties │ ├── comp.properties │ ├── data.properties │ ├── draw.properties │ ├── file.properties │ ├── gui.properties │ ├── hex.properties │ ├── log.properties │ ├── menu.properties │ ├── opts.properties │ ├── prefs.properties │ ├── proj.properties │ ├── start.properties │ ├── std.properties │ ├── tools.properties │ └── util.properties │ ├── fr │ ├── analyze.properties │ ├── circuit.properties │ ├── data.properties │ ├── draw.properties │ ├── file.properties │ ├── gui.properties │ ├── hex.properties │ ├── log.properties │ ├── menu.properties │ ├── opts.properties │ ├── prefs.properties │ ├── proj.properties │ ├── start.properties │ ├── std.properties │ ├── tools.properties │ └── util.properties │ ├── hendrix.png │ ├── icons │ ├── 7seg.svg │ ├── LogisimApp.icns │ ├── LogisimDoc.icns │ ├── adder.svg │ ├── andGate.svg │ ├── andGateRect.svg │ ├── bitSelector.svg │ ├── bitadder.svg │ ├── bitfindr.svg │ ├── bufferGate.svg │ ├── button.svg │ ├── clock.svg │ ├── comparator.svg │ ├── constant.svg │ ├── controlledBuffer.svg │ ├── controlledInverter.svg │ ├── counter.svg │ ├── dFlipFlop.svg │ ├── decoder.svg │ ├── demultiplexer.svg │ ├── dff.svg │ ├── dinAndGate.svg │ ├── dinNandGate.svg │ ├── dinNorGate.svg │ ├── dinNotGate.svg │ ├── dinOrGate.svg │ ├── dinXnorGate.svg │ ├── dinXorGate.svg │ ├── divider.svg │ ├── dotmat.svg │ ├── drawarc.svg │ ├── drawcurv.svg │ ├── drawline.svg │ ├── drawoval.svg │ ├── drawpin.svg │ ├── drawplin.svg │ ├── drawpoly.svg │ ├── drawrect.svg │ ├── drawrrct.svg │ ├── extender.svg │ ├── ground.svg │ ├── hexdig.svg │ ├── jkFlipFlop.svg │ ├── joystick.svg │ ├── keyboard.svg │ ├── led.svg │ ├── menu.svg │ ├── multiplexer.svg │ ├── multiplier.svg │ ├── nandGate.svg │ ├── nandGateRect.svg │ ├── negator.svg │ ├── norGate.svg │ ├── norGateRect.svg │ ├── notGate.svg │ ├── notGateRect.svg │ ├── orGate.svg │ ├── orGateRect.svg │ ├── parityEvenGate.svg │ ├── parityOddGate.svg │ ├── pinInput.svg │ ├── pinOutput.svg │ ├── pinOutputReversed.svg │ ├── poke.svg │ ├── pow.svg │ ├── power.svg │ ├── priencod.svg │ ├── probe.svg │ ├── projadd.svg │ ├── projapp.svg │ ├── projdel.svg │ ├── projdown.svg │ ├── projlayo.svg │ ├── projsim.svg │ ├── projtool.svg │ ├── projup.svg │ ├── pullrect.svg │ ├── pullshap.svg │ ├── ram.svg │ ├── random.svg │ ├── register.svg │ ├── rom.svg │ ├── select.svg │ ├── shifter.svg │ ├── shiftreg.svg │ ├── simplay.svg │ ├── simstep.svg │ ├── simstop.svg │ ├── simtplay.svg │ ├── simtstep.svg │ ├── simtstop.svg │ ├── splitter.svg │ ├── srFlipFlop.svg │ ├── subcirc.svg │ ├── subtractor.svg │ ├── tFlipFlop.svg │ ├── text.svg │ ├── trans0.svg │ ├── trans1.svg │ ├── transmis.svg │ ├── tty.svg │ ├── tunnel.svg │ ├── wiring.svg │ ├── xnorGate.svg │ ├── xnorGateRect.svg │ ├── xorGate.svg │ └── xorGateRect.svg │ ├── img │ ├── logisim-icon-128.png │ ├── logisim-icon-16.png │ ├── logisim-icon-20.png │ ├── logisim-icon-24.png │ ├── logisim-icon-48.png │ └── logisim-icon-64.png │ ├── logisim 16.png │ ├── logisim 32.png │ ├── logisim icon.ico │ ├── pt │ ├── analyze.properties │ ├── circuit.properties │ ├── data.properties │ ├── draw.properties │ ├── file.properties │ ├── gui.properties │ ├── hex.properties │ ├── legacy.properties │ ├── log.properties │ ├── menu.properties │ ├── opts.properties │ ├── prefs.properties │ ├── proj.properties │ ├── start.properties │ ├── std.properties │ ├── tools.properties │ └── util.properties │ ├── ru │ ├── analyze.properties │ ├── circuit.properties │ ├── data.properties │ ├── draw.properties │ ├── file.properties │ ├── gui.properties │ ├── hex.properties │ ├── log.properties │ ├── menu.properties │ ├── opts.properties │ ├── prefs.properties │ ├── proj.properties │ ├── start.properties │ ├── std.properties │ ├── tools.properties │ └── util.properties │ └── settings.properties ├── www ├── README.txt ├── de │ ├── comments.html │ ├── docs.html │ ├── download.html │ ├── header.png │ ├── header.svg │ ├── header.txt │ ├── index.html │ ├── shot-2.6.1-base.png │ ├── shot-2.6.1.png │ ├── shot-2.7.0.png │ └── template.html ├── el │ ├── comments.html │ ├── docs.html │ ├── download.html │ ├── header.png │ ├── header.svg │ ├── header.txt │ ├── index.html │ ├── shot-2.7.0.png │ └── template.html ├── en │ ├── comments.html │ ├── docs.html │ ├── download.html │ ├── header.png │ ├── header.svg │ ├── header.txt │ ├── index.html │ ├── shot-2.7.0.png │ └── template.html ├── es │ ├── comments.html │ ├── docs.html │ ├── download.html │ ├── header.png │ ├── header.svg │ ├── header.txt │ ├── index.html │ ├── shot-2.7.0.png │ └── template.html ├── pt │ ├── comments.html │ ├── docs.html │ ├── download.html │ ├── header.png │ ├── header.svg │ ├── header.txt │ ├── index.html │ ├── shot-2.7.0.png │ └── template.html ├── root │ ├── comments.html │ ├── docs.html │ ├── download.html │ ├── email.png │ ├── header.png │ ├── index.html │ ├── links.html │ ├── logisim.ico │ ├── qanda.html │ ├── shot-2.3.0.png │ ├── shot-2.7.0.png │ ├── style.css │ └── template.html └── ru │ ├── comments.html │ ├── docs.html │ ├── download.html │ ├── header.png │ ├── index.html │ ├── shot-2.5.0.png │ ├── shot-2.7.0.png │ └── template.html └── xlate ├── guide ├── 01-omegat-handy-window-layout.png └── general-translation-guide.txt └── ru ├── doc ├── omegat-logisim-doc_ru-level1.tmx ├── omegat-logisim-doc_ru-level2.tmx ├── omegat-logisim-doc_ru-omegat.tmx └── omegat │ ├── learned_words.txt │ └── project_save.tmx ├── resources ├── omegat-logisim-resources_ru-level1.tmx ├── omegat-logisim-resources_ru-level2.tmx ├── omegat-logisim-resources_ru-omegat.tmx └── omegat │ ├── learned_words.txt │ └── project_save.tmx └── www ├── omegat-logisim-www_ru-level1.tmx ├── omegat-logisim-www_ru-level2.tmx ├── omegat-logisim-www_ru-omegat.tmx └── omegat ├── learned_words.txt └── project_save.tmx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/.gitignore -------------------------------------------------------------------------------- /Buildfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/Buildfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/README.md -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/config.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libs/colorpicker-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/libs/colorpicker-1.0.jar -------------------------------------------------------------------------------- /libs/mrjadapter-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/libs/mrjadapter-1.1.jar -------------------------------------------------------------------------------- /notes/2.5.1/announce-2.5.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/notes/2.5.1/announce-2.5.1.txt -------------------------------------------------------------------------------- /notes/2.6.0/announce-2.6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/notes/2.6.0/announce-2.6.0.txt -------------------------------------------------------------------------------- /notes/2.6.1/announce-2.6.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/notes/2.6.1/announce-2.6.1.txt -------------------------------------------------------------------------------- /notes/2.6.2/announce-2.6.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/notes/2.6.2/announce-2.6.2.txt -------------------------------------------------------------------------------- /notes/2.6.3/announce-2.6.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/notes/2.6.3/announce-2.6.3.txt -------------------------------------------------------------------------------- /notes/2.7.0/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/notes/2.7.0/README.TXT -------------------------------------------------------------------------------- /notes/2.7.1/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/notes/2.7.1/README.TXT -------------------------------------------------------------------------------- /scripts/build-www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/build-www.py -------------------------------------------------------------------------------- /scripts/copy_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/copy_doc.py -------------------------------------------------------------------------------- /scripts/create-jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/create-jar.py -------------------------------------------------------------------------------- /scripts/data/Logisim.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/data/Logisim.app/Contents/Info.plist -------------------------------------------------------------------------------- /scripts/data/Logisim.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLGSM -------------------------------------------------------------------------------- /scripts/data/Logisim.app/LogisimApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/data/Logisim.app/LogisimApp.icns -------------------------------------------------------------------------------- /scripts/data/Logisim.app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/data/Logisim.app/README -------------------------------------------------------------------------------- /scripts/data/macos-classes/MacOsAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/data/macos-classes/MacOsAdapter.class -------------------------------------------------------------------------------- /scripts/doc2www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/doc2www.py -------------------------------------------------------------------------------- /scripts/logisim_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/logisim_script.py -------------------------------------------------------------------------------- /scripts/pot-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/scripts/pot-create.py -------------------------------------------------------------------------------- /src/demos/java/com/cburch/hex/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/demos/java/com/cburch/hex/Test.java -------------------------------------------------------------------------------- /src/demos/java/com/cburch/logisim/SVG/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/demos/java/com/cburch/logisim/SVG/Main.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/gui/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/gui/Main.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/gui/Toolbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/gui/Toolbar.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/model/Handle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/model/Handle.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/shapes/Curve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/shapes/Curve.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/shapes/Line.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/shapes/Line.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/shapes/Oval.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/shapes/Oval.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/shapes/Poly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/shapes/Poly.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/shapes/Text.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/shapes/Text.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/undo/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/undo/Action.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/undo/UndoLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/undo/UndoLog.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/draw/util/ZOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/draw/util/ZOrder.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/gray/Components.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/gray/Components.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/gray/CounterData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/gray/CounterData.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/gray/CounterPoker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/gray/CounterPoker.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/gray/GrayCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/gray/GrayCounter.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/hex/Caret.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/hex/Caret.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/hex/HexEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/hex/HexEditor.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/hex/HexModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/hex/HexModel.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/hex/Highlighter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/hex/Highlighter.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/hex/Measures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/hex/Measures.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/logisim/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/logisim/Main.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/logisim/data/Size.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/logisim/data/Size.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/logisim/std/io/Io.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/logisim/std/io/Io.java -------------------------------------------------------------------------------- /src/main/java/com/cburch/logisim/util/Dag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/java/com/cburch/logisim/util/Dag.java -------------------------------------------------------------------------------- /src/main/resources/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /src/main/resources/bric/ColorPicker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/bric/ColorPicker.properties -------------------------------------------------------------------------------- /src/main/resources/connectina/JFontChooser.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/connectina/JFontChooser.form -------------------------------------------------------------------------------- /src/main/resources/doc/circs/buildMux.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/circs/buildMux.circ -------------------------------------------------------------------------------- /src/main/resources/doc/circs/cpu-16bit.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/circs/cpu-16bit.circ -------------------------------------------------------------------------------- /src/main/resources/doc/circs/io-segs.fig.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/circs/io-segs.fig.gz -------------------------------------------------------------------------------- /src/main/resources/doc/circs/log.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/circs/log.circ -------------------------------------------------------------------------------- /src/main/resources/doc/circs/myCpu.im: -------------------------------------------------------------------------------- 1 | v2.0 raw 2 | 7101 3 | c207 4 | 7300 5 | 0332 6 | 1221 7 | 92fe 8 | 8000 9 | 0006 10 | -------------------------------------------------------------------------------- /src/main/resources/doc/circs/prop-weird.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/circs/prop-weird.circ -------------------------------------------------------------------------------- /src/main/resources/doc/circs/verify.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/circs/verify.circ -------------------------------------------------------------------------------- /src/main/resources/doc/circs/xor.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/circs/xor.circ -------------------------------------------------------------------------------- /src/main/resources/doc/de/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/de/html/contents.html -------------------------------------------------------------------------------- /src/main/resources/doc/de/html/guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/de/html/guide/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/de/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/de/html/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/de/html/libs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/de/html/libs/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/de/html/libs/io/led.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/de/html/libs/io/led.html -------------------------------------------------------------------------------- /src/main/resources/doc/de/html/libs/io/tty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/de/html/libs/io/tty.html -------------------------------------------------------------------------------- /src/main/resources/doc/de/img-guide/mem-hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/de/img-guide/mem-hex.png -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/contents.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/about/gpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/about/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/analyze/expr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/analyze/gen.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/analyze/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/analyze/open.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/analyze/table.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/attrlib/attr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/attrlib/explore.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/attrlib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/attrlib/tool.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/bundles/colors.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/bundles/creating.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/bundles/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/bundles/splitting.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/jar/counter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/jar/guide.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/jar/incr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/jar/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/jar/library.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/jar/simpctr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/log/file.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/log/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/log/selection.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/log/table.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/mem/hex.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/mem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/mem/menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/mem/poke.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/menu/edit.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/menu/file.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/menu/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/menu/project.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/menu/simulate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/menu/winhelp.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/opts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/opts/mouse.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/opts/simulate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/opts/toolbar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prefs/cmdline.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prefs/exp.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prefs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prefs/intl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prefs/layout.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prefs/template.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prefs/window.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prop/delays.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prop/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prop/oscillate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/prop/shortcome.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/subcirc/appear.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/subcirc/creating.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/subcirc/debug.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/subcirc/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/subcirc/library.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/subcirc/using.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/tutorial/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/tutorial/tutor-gates.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/tutorial/tutor-orient.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/tutorial/tutor-test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/tutorial/tutor-text.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/tutorial/tutor-wires.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/verify/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/verify/multi.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/verify/other.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/guide/verify/sub.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/adder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/bitadder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/bitfinder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/comparator.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/divider.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/multiplier.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/negator.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/shifter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/arith/subtractor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/edit.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/label.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/poke.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/select.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/text.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/base/wiring.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/gates/basic.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/gates/buffer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/gates/controlled.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/gates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/gates/not.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/gates/xor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/7seg.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/button.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/dotmat.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/hexdig.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/joystick.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/keyboard.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/led.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/io/tty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/counter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/flipflops.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/ram.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/random.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/register.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/rom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/mem/shiftreg.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/plexers/decoder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/plexers/demux.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/plexers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/plexers/mux.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/plexers/priencod.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/plexers/selector.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/clock.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/const01.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/constant.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/extender.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/pin.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/probe.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/pull.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/splitter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/transist.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/transmis.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/el/html/libs/wiring/tunnel.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/en/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/html/contents.html -------------------------------------------------------------------------------- /src/main/resources/doc/en/html/guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/html/guide/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/en/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/html/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/en/html/libs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/html/libs/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/en/html/libs/io/led.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/html/libs/io/led.html -------------------------------------------------------------------------------- /src/main/resources/doc/en/html/libs/io/tty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/html/libs/io/tty.html -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/7seg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/7seg.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/adder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/adder.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/andGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/andGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/andGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/andGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/bitSelector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/bitSelector.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/bitadder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/bitadder.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/bitfindr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/bitfindr.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/bufferGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/bufferGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/button.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/clock.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/comparator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/comparator.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/constant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/constant.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/counter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/counter.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/decoder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/decoder.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dff.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dinAndGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dinAndGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dinNandGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dinNandGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dinNorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dinNorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dinNotGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dinNotGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dinOrGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dinOrGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dinXnorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dinXnorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dinXorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dinXorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/divider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/divider.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/dotmat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/dotmat.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawarc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawarc.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawcurv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawcurv.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawline.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawoval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawoval.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawpin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawpin.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawplin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawplin.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawpoly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawpoly.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawrect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/drawrrct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/drawrrct.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/extender.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/extender.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/ground.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/ground.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/hexdig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/hexdig.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/jkFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/jkFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/joystick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/joystick.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/keyboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/keyboard.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/led.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/led.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/menu.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/multiplexer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/multiplexer.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/multiplier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/multiplier.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/nandGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/nandGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/negator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/negator.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/norGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/norGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/norGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/norGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/notGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/notGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/notGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/notGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/orGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/orGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/orGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/orGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/pinInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/pinInput.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/pinOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/pinOutput.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/poke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/poke.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/power.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/priencod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/priencod.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/probe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/probe.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projadd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projadd.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projapp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projapp.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projdel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projdel.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projdown.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projlayo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projlayo.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projsim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projsim.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projtool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projtool.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/projup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/projup.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/pullrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/pullrect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/pullshap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/pullshap.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/ram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/ram.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/random.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/random.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/register.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/register.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/rom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/rom.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/select.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/shifter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/shifter.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/shiftreg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/shiftreg.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/simplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/simplay.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/simstep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/simstep.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/simstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/simstop.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/simtplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/simtplay.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/simtstep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/simtstep.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/simtstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/simtstop.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/splitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/splitter.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/srFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/srFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/subcirc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/subcirc.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/subtractor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/subtractor.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/tFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/tFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/text.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/trans0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/trans0.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/trans1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/trans1.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/transmis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/transmis.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/tty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/tty.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/tunnel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/tunnel.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/wiring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/wiring.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/xnorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/xnorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/xorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/xorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/icons/xorGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/icons/xorGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-guide/mem-hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-guide/mem-hex.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/7seg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/7seg.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/adder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/adder.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/bitadder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/bitadder.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/bitfindr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/bitfindr.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/buffer.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/button.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/clock.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/constant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/constant.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/counter.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/decoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/decoder.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/demux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/demux.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/divider.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/dotmat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/dotmat.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/extender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/extender.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/ground.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/hexdig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/hexdig.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/io-segs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/io-segs.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/joystick.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/keyboard.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/label.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/led.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/mux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/mux.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/negator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/negator.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/not-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/not-rect.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/pin.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/power.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/priencod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/priencod.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/probe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/probe.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/ram.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/ramdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/ramdemo.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/random.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/register.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/rom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/rom.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/selector.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/shifter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/shifter.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/shiftreg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/shiftreg.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/splitter.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/trans0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/trans0.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/trans1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/trans1.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/transmis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/transmis.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/tty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/tty.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/tunnel.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/wand-wor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/wand-wor.png -------------------------------------------------------------------------------- /src/main/resources/doc/en/img-libs/xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/en/img-libs/xor.png -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/contents.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/about/gpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/about/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/analyze/expr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/analyze/gen.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/analyze/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/analyze/open.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/analyze/table.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/attrlib/attr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/attrlib/explore.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/attrlib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/attrlib/tool.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/bundles/colors.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/bundles/creating.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/bundles/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/bundles/splitting.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/jar/counter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/jar/guide.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/jar/incr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/jar/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/jar/library.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/jar/simpctr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/log/file.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/log/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/log/selection.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/log/table.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/mem/hex.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/mem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/mem/menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/mem/poke.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/menu/edit.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/menu/file.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/menu/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/menu/project.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/menu/simulate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/menu/winhelp.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/opts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/opts/mouse.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/opts/simulate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/opts/toolbar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prefs/cmdline.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prefs/exp.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prefs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prefs/intl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prefs/layout.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prefs/template.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prefs/window.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prop/delays.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prop/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prop/oscillate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/prop/shortcome.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/subcirc/appear.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/subcirc/creating.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/subcirc/debug.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/subcirc/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/subcirc/library.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/subcirc/using.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/tutorial/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/tutorial/tutor-gates.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/tutorial/tutor-orient.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/tutorial/tutor-test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/tutorial/tutor-text.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/tutorial/tutor-wires.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/verify/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/verify/multi.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/verify/other.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/guide/verify/sub.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/adder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/bitadder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/bitfinder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/comparator.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/divider.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/multiplier.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/negator.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/shifter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/arith/subtractor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/edit.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/label.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/poke.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/select.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/text.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/base/wiring.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/gates/basic.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/gates/buffer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/gates/controlled.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/gates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/gates/not.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/gates/xor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/7seg.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/button.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/dotmat.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/hexdig.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/joystick.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/keyboard.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/led.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/io/tty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/counter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/flipflops.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/ram.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/random.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/register.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/rom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/mem/shiftreg.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/plexers/decoder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/plexers/demux.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/plexers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/plexers/mux.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/plexers/priencod.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/plexers/selector.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/clock.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/const01.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/constant.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/extender.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/pin.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/probe.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/pull.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/splitter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/transist.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/transmis.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/es/html/libs/wiring/tunnel.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/doc/fr/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/html/contents.html -------------------------------------------------------------------------------- /src/main/resources/doc/fr/html/guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/html/guide/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/fr/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/html/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/fr/html/libs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/html/libs/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/fr/html/libs/io/led.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/html/libs/io/led.html -------------------------------------------------------------------------------- /src/main/resources/doc/fr/html/libs/io/tty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/html/libs/io/tty.html -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/7seg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/7seg.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/adder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/adder.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/andGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/andGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/andGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/andGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/bitSelector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/bitSelector.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/bitadder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/bitadder.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/bitfindr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/bitfindr.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/bufferGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/bufferGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/button.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/clock.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/comparator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/comparator.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/constant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/constant.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/counter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/counter.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/decoder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/decoder.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dff.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dinAndGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dinAndGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dinNandGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dinNandGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dinNorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dinNorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dinNotGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dinNotGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dinOrGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dinOrGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dinXnorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dinXnorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dinXorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dinXorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/divider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/divider.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/dotmat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/dotmat.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawarc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawarc.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawcurv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawcurv.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawline.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawoval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawoval.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawpin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawpin.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawplin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawplin.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawpoly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawpoly.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawrect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/drawrrct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/drawrrct.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/extender.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/extender.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/ground.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/ground.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/hexdig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/hexdig.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/jkFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/jkFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/joystick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/joystick.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/keyboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/keyboard.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/led.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/led.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/menu.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/multiplexer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/multiplexer.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/multiplier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/multiplier.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/nandGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/nandGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/negator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/negator.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/norGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/norGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/norGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/norGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/notGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/notGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/notGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/notGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/orGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/orGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/orGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/orGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/pinInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/pinInput.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/pinOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/pinOutput.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/poke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/poke.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/power.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/priencod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/priencod.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/probe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/probe.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projadd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projadd.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projapp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projapp.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projdel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projdel.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projdown.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projlayo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projlayo.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projsim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projsim.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projtool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projtool.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/projup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/projup.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/pullrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/pullrect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/pullshap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/pullshap.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/ram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/ram.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/random.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/random.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/register.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/register.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/rom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/rom.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/select.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/shifter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/shifter.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/shiftreg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/shiftreg.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/simplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/simplay.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/simstep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/simstep.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/simstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/simstop.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/simtplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/simtplay.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/simtstep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/simtstep.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/simtstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/simtstop.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/splitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/splitter.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/srFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/srFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/subcirc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/subcirc.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/subtractor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/subtractor.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/tFlipFlop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/tFlipFlop.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/text.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/trans0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/trans0.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/trans1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/trans1.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/transmis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/transmis.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/tty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/tty.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/tunnel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/tunnel.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/wiring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/wiring.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/xnorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/xnorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/xorGate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/xorGate.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/icons/xorGateRect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/icons/xorGateRect.gif -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-guide/mem-hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-guide/mem-hex.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/7seg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/7seg.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/adder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/adder.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/bitadder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/bitadder.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/bitfindr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/bitfindr.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/buffer.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/button.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/clock.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/constant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/constant.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/counter.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/decoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/decoder.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/demux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/demux.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/divider.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/dotmat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/dotmat.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/extender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/extender.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/ground.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/hexdig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/hexdig.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/io-segs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/io-segs.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/joystick.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/keyboard.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/label.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/led.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/mux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/mux.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/negator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/negator.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/not-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/not-rect.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/pin.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/power.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/priencod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/priencod.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/probe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/probe.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/ram.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/ramdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/ramdemo.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/random.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/register.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/rom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/rom.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/trans0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/trans0.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/trans1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/trans1.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/tty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/tty.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/tunnel.png -------------------------------------------------------------------------------- /src/main/resources/doc/fr/img-libs/xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/fr/img-libs/xor.png -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/contents.html -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/7seg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/7seg.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/dff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/dff.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/led.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/led.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/menu.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/poke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/poke.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/ram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/ram.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/rom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/rom.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/text.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/icons/tty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/icons/tty.gif -------------------------------------------------------------------------------- /src/main/resources/doc/pt/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/pt/html/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/ru/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/ru/html/contents.html -------------------------------------------------------------------------------- /src/main/resources/doc/ru/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/ru/html/index.html -------------------------------------------------------------------------------- /src/main/resources/doc/ru/jhindexer-stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/ru/jhindexer-stops.txt -------------------------------------------------------------------------------- /src/main/resources/doc/ru/jhindexer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/ru/jhindexer.cfg -------------------------------------------------------------------------------- /src/main/resources/doc/support/base-doc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/support/base-doc.hs -------------------------------------------------------------------------------- /src/main/resources/doc/support/base-map.jhm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/support/base-map.jhm -------------------------------------------------------------------------------- /src/main/resources/doc/support/www/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/support/www/closed.gif -------------------------------------------------------------------------------- /src/main/resources/doc/support/www/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/support/www/list.gif -------------------------------------------------------------------------------- /src/main/resources/doc/support/www/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/doc/support/www/open.gif -------------------------------------------------------------------------------- /src/main/resources/logisim/de/data.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/data.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/draw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/draw.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/file.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/gui.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/gui.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/hex.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/hex.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/log.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/menu.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/opts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/opts.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/proj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/proj.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/std.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/std.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/de/util.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/de/util.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/default.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/default.templ -------------------------------------------------------------------------------- /src/main/resources/logisim/drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/drawing.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/el/data.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/data.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/draw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/draw.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/file.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/gui.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/gui.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/hex.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/hex.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/log.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/menu.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/opts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/opts.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/proj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/proj.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/std.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/std.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/el/util.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/el/util.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/data.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/data.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/draw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/draw.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/file.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/gui.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/gui.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/hex.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/hex.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/log.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/menu.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/opts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/opts.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/proj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/proj.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/std.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/std.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/en/util.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/en/util.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/comp.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/logisim/es/data.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/data.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/draw.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/logisim/es/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/file.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/gui.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/gui.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/hex.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/hex.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/log.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/menu.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/opts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/opts.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/proj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/proj.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/std.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/std.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/es/util.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/es/util.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/data.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/data.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/draw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/draw.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/file.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/gui.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/gui.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/hex.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/hex.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/log.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/menu.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/opts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/opts.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/proj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/proj.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/std.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/std.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/fr/util.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/fr/util.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/hendrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/hendrix.png -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/7seg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/7seg.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/adder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/adder.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/andGate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/andGate.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/bitadder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/bitadder.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/bitfindr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/bitfindr.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/button.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/clock.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/constant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/constant.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/counter.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/decoder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/decoder.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/dff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/dff.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/divider.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/dotmat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/dotmat.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawarc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawarc.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawcurv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawcurv.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawline.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawoval.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawoval.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawpin.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawplin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawplin.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawpoly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawpoly.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawrect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawrect.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/drawrrct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/drawrrct.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/extender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/extender.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/ground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/ground.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/hexdig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/hexdig.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/joystick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/joystick.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/keyboard.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/led.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/led.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/menu.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/nandGate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/nandGate.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/negator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/negator.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/norGate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/norGate.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/notGate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/notGate.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/orGate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/orGate.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/pinInput.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/pinInput.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/poke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/poke.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/pow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/pow.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/power.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/priencod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/priencod.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/probe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/probe.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projadd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projadd.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projapp.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projdel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projdel.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projdown.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projlayo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projlayo.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projsim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projsim.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projtool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projtool.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/projup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/projup.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/pullrect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/pullrect.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/pullshap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/pullshap.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/ram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/ram.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/random.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/register.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/register.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/rom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/rom.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/select.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/shifter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/shifter.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/shiftreg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/shiftreg.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/simplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/simplay.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/simstep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/simstep.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/simstop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/simstop.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/simtplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/simtplay.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/simtstep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/simtstep.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/simtstop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/simtstop.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/splitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/splitter.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/subcirc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/subcirc.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/text.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/trans0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/trans0.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/trans1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/trans1.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/transmis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/transmis.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/tty.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/tunnel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/tunnel.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/wiring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/wiring.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/xnorGate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/xnorGate.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/icons/xorGate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/icons/xorGate.svg -------------------------------------------------------------------------------- /src/main/resources/logisim/logisim 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/logisim 16.png -------------------------------------------------------------------------------- /src/main/resources/logisim/logisim 32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/logisim 32.png -------------------------------------------------------------------------------- /src/main/resources/logisim/logisim icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/logisim icon.ico -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/data.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/data.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/draw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/draw.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/file.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/gui.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/gui.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/hex.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/hex.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/log.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/menu.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/opts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/opts.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/proj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/proj.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/std.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/std.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/pt/util.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/pt/util.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/data.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/data.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/draw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/draw.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/file.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/gui.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/gui.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/hex.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/hex.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/log.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/menu.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/opts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/opts.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/proj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/proj.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/std.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/std.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/ru/util.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/src/main/resources/logisim/ru/util.properties -------------------------------------------------------------------------------- /src/main/resources/logisim/settings.properties: -------------------------------------------------------------------------------- 1 | locales = de el en es fr pt ru 2 | -------------------------------------------------------------------------------- /www/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/README.txt -------------------------------------------------------------------------------- /www/de/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/comments.html -------------------------------------------------------------------------------- /www/de/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/docs.html -------------------------------------------------------------------------------- /www/de/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/download.html -------------------------------------------------------------------------------- /www/de/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/header.png -------------------------------------------------------------------------------- /www/de/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/header.svg -------------------------------------------------------------------------------- /www/de/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/header.txt -------------------------------------------------------------------------------- /www/de/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/index.html -------------------------------------------------------------------------------- /www/de/shot-2.6.1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/shot-2.6.1-base.png -------------------------------------------------------------------------------- /www/de/shot-2.6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/shot-2.6.1.png -------------------------------------------------------------------------------- /www/de/shot-2.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/shot-2.7.0.png -------------------------------------------------------------------------------- /www/de/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/de/template.html -------------------------------------------------------------------------------- /www/el/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/comments.html -------------------------------------------------------------------------------- /www/el/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/docs.html -------------------------------------------------------------------------------- /www/el/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/download.html -------------------------------------------------------------------------------- /www/el/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/header.png -------------------------------------------------------------------------------- /www/el/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/header.svg -------------------------------------------------------------------------------- /www/el/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/header.txt -------------------------------------------------------------------------------- /www/el/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/index.html -------------------------------------------------------------------------------- /www/el/shot-2.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/shot-2.7.0.png -------------------------------------------------------------------------------- /www/el/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/el/template.html -------------------------------------------------------------------------------- /www/en/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/comments.html -------------------------------------------------------------------------------- /www/en/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/docs.html -------------------------------------------------------------------------------- /www/en/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/download.html -------------------------------------------------------------------------------- /www/en/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/header.png -------------------------------------------------------------------------------- /www/en/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/header.svg -------------------------------------------------------------------------------- /www/en/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/header.txt -------------------------------------------------------------------------------- /www/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/index.html -------------------------------------------------------------------------------- /www/en/shot-2.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/shot-2.7.0.png -------------------------------------------------------------------------------- /www/en/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/en/template.html -------------------------------------------------------------------------------- /www/es/comments.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/es/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/es/docs.html -------------------------------------------------------------------------------- /www/es/download.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/es/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/es/header.png -------------------------------------------------------------------------------- /www/es/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/es/header.svg -------------------------------------------------------------------------------- /www/es/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/es/header.txt -------------------------------------------------------------------------------- /www/es/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/es/index.html -------------------------------------------------------------------------------- /www/es/shot-2.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/es/shot-2.7.0.png -------------------------------------------------------------------------------- /www/es/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/es/template.html -------------------------------------------------------------------------------- /www/pt/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/comments.html -------------------------------------------------------------------------------- /www/pt/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/docs.html -------------------------------------------------------------------------------- /www/pt/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/download.html -------------------------------------------------------------------------------- /www/pt/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/header.png -------------------------------------------------------------------------------- /www/pt/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/header.svg -------------------------------------------------------------------------------- /www/pt/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/header.txt -------------------------------------------------------------------------------- /www/pt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/index.html -------------------------------------------------------------------------------- /www/pt/shot-2.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/shot-2.7.0.png -------------------------------------------------------------------------------- /www/pt/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/pt/template.html -------------------------------------------------------------------------------- /www/root/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/comments.html -------------------------------------------------------------------------------- /www/root/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/docs.html -------------------------------------------------------------------------------- /www/root/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/download.html -------------------------------------------------------------------------------- /www/root/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/email.png -------------------------------------------------------------------------------- /www/root/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/header.png -------------------------------------------------------------------------------- /www/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/index.html -------------------------------------------------------------------------------- /www/root/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/links.html -------------------------------------------------------------------------------- /www/root/logisim.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/logisim.ico -------------------------------------------------------------------------------- /www/root/qanda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/qanda.html -------------------------------------------------------------------------------- /www/root/shot-2.3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/shot-2.3.0.png -------------------------------------------------------------------------------- /www/root/shot-2.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/shot-2.7.0.png -------------------------------------------------------------------------------- /www/root/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/style.css -------------------------------------------------------------------------------- /www/root/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/root/template.html -------------------------------------------------------------------------------- /www/ru/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/comments.html -------------------------------------------------------------------------------- /www/ru/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/docs.html -------------------------------------------------------------------------------- /www/ru/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/download.html -------------------------------------------------------------------------------- /www/ru/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/header.png -------------------------------------------------------------------------------- /www/ru/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/index.html -------------------------------------------------------------------------------- /www/ru/shot-2.5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/shot-2.5.0.png -------------------------------------------------------------------------------- /www/ru/shot-2.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/shot-2.7.0.png -------------------------------------------------------------------------------- /www/ru/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/www/ru/template.html -------------------------------------------------------------------------------- /xlate/guide/01-omegat-handy-window-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/guide/01-omegat-handy-window-layout.png -------------------------------------------------------------------------------- /xlate/guide/general-translation-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/guide/general-translation-guide.txt -------------------------------------------------------------------------------- /xlate/ru/doc/omegat-logisim-doc_ru-level1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/doc/omegat-logisim-doc_ru-level1.tmx -------------------------------------------------------------------------------- /xlate/ru/doc/omegat-logisim-doc_ru-level2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/doc/omegat-logisim-doc_ru-level2.tmx -------------------------------------------------------------------------------- /xlate/ru/doc/omegat-logisim-doc_ru-omegat.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/doc/omegat-logisim-doc_ru-omegat.tmx -------------------------------------------------------------------------------- /xlate/ru/doc/omegat/learned_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/doc/omegat/learned_words.txt -------------------------------------------------------------------------------- /xlate/ru/doc/omegat/project_save.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/doc/omegat/project_save.tmx -------------------------------------------------------------------------------- /xlate/ru/resources/omegat/learned_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/resources/omegat/learned_words.txt -------------------------------------------------------------------------------- /xlate/ru/resources/omegat/project_save.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/resources/omegat/project_save.tmx -------------------------------------------------------------------------------- /xlate/ru/www/omegat-logisim-www_ru-level1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/www/omegat-logisim-www_ru-level1.tmx -------------------------------------------------------------------------------- /xlate/ru/www/omegat-logisim-www_ru-level2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/www/omegat-logisim-www_ru-level2.tmx -------------------------------------------------------------------------------- /xlate/ru/www/omegat-logisim-www_ru-omegat.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/www/omegat-logisim-www_ru-omegat.tmx -------------------------------------------------------------------------------- /xlate/ru/www/omegat/learned_words.txt: -------------------------------------------------------------------------------- 1 | Logisim 2 | подсхем 3 | эго 4 | апплетов 5 | -------------------------------------------------------------------------------- /xlate/ru/www/omegat/project_save.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrancej/logisim/HEAD/xlate/ru/www/omegat/project_save.tmx --------------------------------------------------------------------------------