Restructured entire project
- Now using Gradle instead of Ant. - Removed documents belonging to wiki from project root. - Switched to standard Maven project structure. Signed-off-by: Tin Svagelj (Caellian) <tin.svagelj.email@gmail.com>
|
@ -1,13 +1,221 @@
|
||||||
# OS X
|
# Created by https://www.gitignore.io/api/java,macos,linux,gradle,windows,eclipse,jetbrains+all,git
|
||||||
*.DS_Store
|
# Edit at https://www.gitignore.io/?templates=java,macos,linux,gradle,windows,eclipse,jetbrains+all,git
|
||||||
|
|
||||||
|
### Eclipse ###
|
||||||
|
|
||||||
|
.metadata
|
||||||
|
bin/
|
||||||
|
tmp/
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
local.properties
|
||||||
|
.settings/
|
||||||
|
.loadpath
|
||||||
|
.recommenders
|
||||||
|
|
||||||
|
# External tool builders
|
||||||
|
.externalToolBuilders/
|
||||||
|
|
||||||
|
# Locally stored "Eclipse launch configurations"
|
||||||
|
*.launch
|
||||||
|
|
||||||
|
# PyDev specific (Python IDE for Eclipse)
|
||||||
|
*.pydevproject
|
||||||
|
|
||||||
|
# CDT-specific (C/C++ Development Tooling)
|
||||||
|
.cproject
|
||||||
|
|
||||||
|
# CDT- autotools
|
||||||
|
.autotools
|
||||||
|
|
||||||
|
# Java annotation processor (APT)
|
||||||
|
.factorypath
|
||||||
|
|
||||||
|
# PDT-specific (PHP Development Tools)
|
||||||
|
.buildpath
|
||||||
|
|
||||||
|
# sbteclipse plugin
|
||||||
|
.target
|
||||||
|
|
||||||
|
# Tern plugin
|
||||||
|
.tern-project
|
||||||
|
|
||||||
|
# TeXlipse plugin
|
||||||
|
.texlipse
|
||||||
|
|
||||||
|
# STS (Spring Tool Suite)
|
||||||
|
.springBeans
|
||||||
|
|
||||||
|
# Code Recommenders
|
||||||
|
.recommenders/
|
||||||
|
|
||||||
|
# Annotation Processing
|
||||||
|
.apt_generated/
|
||||||
|
|
||||||
|
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||||
|
.cache-main
|
||||||
|
.scala_dependencies
|
||||||
|
.worksheet
|
||||||
|
|
||||||
|
### Eclipse Patch ###
|
||||||
|
# Eclipse Core
|
||||||
|
.project
|
||||||
|
|
||||||
|
# JDT-specific (Eclipse Java Development Tools)
|
||||||
|
.classpath
|
||||||
|
|
||||||
|
# Annotation Processing
|
||||||
|
.apt_generated
|
||||||
|
|
||||||
|
.sts4-cache/
|
||||||
|
|
||||||
|
### Git ###
|
||||||
|
# Created by git for backups. To disable backups in Git:
|
||||||
|
# $ git config --global mergetool.keepBackup false
|
||||||
|
*.orig
|
||||||
|
|
||||||
|
# Created by git when using merge tools for conflicts
|
||||||
|
*.BACKUP.*
|
||||||
|
*.BASE.*
|
||||||
|
*.LOCAL.*
|
||||||
|
*.REMOTE.*
|
||||||
|
*_BACKUP_*.txt
|
||||||
|
*_BASE_*.txt
|
||||||
|
*_LOCAL_*.txt
|
||||||
|
*_REMOTE_*.txt
|
||||||
|
|
||||||
|
### Java ###
|
||||||
|
# Compiled class file
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Log file
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# BlueJ files
|
||||||
|
*.ctxt
|
||||||
|
|
||||||
|
# Mobile Tools for Java (J2ME)
|
||||||
|
.mtj.tmp/
|
||||||
|
|
||||||
|
# Package Files #
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.nar
|
||||||
|
*.ear
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
hs_err_pid*
|
||||||
|
|
||||||
|
### JetBrains+all ###
|
||||||
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
||||||
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
|
# User-specific stuff
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/**/usage.statistics.xml
|
||||||
|
.idea/**/dictionaries
|
||||||
|
.idea/**/shelf
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
# Sensitive or high-churn files
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
.idea/**/dbnavigator.xml
|
||||||
|
|
||||||
|
# Gradle
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# Gradle and Maven with auto-import
|
||||||
|
# When using Gradle or Maven with auto-import, you should exclude module files,
|
||||||
|
# since they will be recreated, and may cause churn. Uncomment if using
|
||||||
|
# auto-import.
|
||||||
|
# .idea/modules.xml
|
||||||
|
# .idea/*.iml
|
||||||
|
# .idea/modules
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
# File-based project format
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Cursive Clojure plugin
|
||||||
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
|
### JetBrains+all Patch ###
|
||||||
|
# Ignores the whole .idea folder and all .iml files
|
||||||
|
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
||||||
|
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
||||||
|
|
||||||
|
*.iml
|
||||||
|
modules.xml
|
||||||
|
.idea/misc.xml
|
||||||
|
*.ipr
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
### macOS ###
|
||||||
|
# General
|
||||||
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.LSOverride
|
.LSOverride
|
||||||
desktop.ini
|
|
||||||
|
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|
||||||
|
@ -27,52 +235,51 @@ Network Trash Folder
|
||||||
Temporary Items
|
Temporary Items
|
||||||
.apdisk
|
.apdisk
|
||||||
|
|
||||||
# Linux
|
### Windows ###
|
||||||
*~
|
# Windows thumbnail cache files
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
# temporary files which can be created if a process still has a handle open of a deleted file
|
# Dump file
|
||||||
.fuse_hidden*
|
*.stackdump
|
||||||
|
|
||||||
# KDE directory preferences
|
# Folder config file
|
||||||
.directory
|
[Dd]esktop.ini
|
||||||
|
|
||||||
# Linux trash folder which might appear on any partition or disk
|
# Recycle Bin used on file shares
|
||||||
.Trash-*
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
# Java Files
|
# Windows Installer files
|
||||||
com/bfh
|
*.cab
|
||||||
com/cburch
|
*.msi
|
||||||
com/hepia
|
*.msix
|
||||||
*.jar
|
*.msm
|
||||||
*.class
|
*.msp
|
||||||
|
|
||||||
# Generated files
|
# Windows shortcuts
|
||||||
javadoc/
|
*.lnk
|
||||||
test/com/cburch/logisim/gui
|
|
||||||
bin/
|
|
||||||
out/
|
|
||||||
package/Logisim-evolution.html
|
|
||||||
package/Logisim-evolution.jnlp
|
|
||||||
package/Logisim-evolution_browser.jnlp
|
|
||||||
package/bundles/
|
|
||||||
|
|
||||||
# additional libraries
|
### Gradle ###
|
||||||
!libs/*.jar
|
.gradle
|
||||||
|
/build/
|
||||||
|
|
||||||
# IDE files
|
# Ignore Gradle GUI config
|
||||||
.metadata/
|
gradle-app.setting
|
||||||
.settings/
|
|
||||||
.project
|
|
||||||
.classpath
|
|
||||||
|
|
||||||
|
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
||||||
|
!gradle-wrapper.jar
|
||||||
|
|
||||||
# Simulation files and folders
|
# Cache of project
|
||||||
resources/logisim/sim/comp.tcl
|
.gradletasknamecache
|
||||||
resources/logisim/sim/transcript
|
|
||||||
|
|
||||||
resources/logisim/sim/comp/
|
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
|
||||||
resources/logisim/sim/src/
|
# gradle/wrapper/gradle-wrapper.properties
|
||||||
publi/
|
|
||||||
|
|
||||||
# File containing the log level
|
### Gradle Patch ###
|
||||||
logback.xml
|
**/build/
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/java,macos,linux,gradle,windows,eclipse,jetbrains+all,git
|
||||||
|
|
||||||
|
# Include libraries
|
||||||
|
!lib
|
||||||
|
|
17
.travis.yml
|
@ -1,2 +1,17 @@
|
||||||
language: java
|
language: java
|
||||||
script: ant jar
|
sudo: false
|
||||||
|
jdk:
|
||||||
|
- openjdk8
|
||||||
|
- oraclejdk8
|
||||||
|
before_install:
|
||||||
|
- chmod +x gradlew
|
||||||
|
- chmod +x gradle/wrapper/gradle-wrapper.jar
|
||||||
|
before_cache:
|
||||||
|
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
||||||
|
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.gradle/caches/
|
||||||
|
- $HOME/.gradle/wrapper/
|
||||||
|
script:
|
||||||
|
- ./gradlew build
|
675
LICENSE
|
@ -1,675 +0,0 @@
|
||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 3, 29 June 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The GNU General Public License is a free, copyleft license for
|
|
||||||
software and other kinds of works.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
the GNU General Public License is intended to guarantee your freedom to
|
|
||||||
share and change all versions of a program--to make sure it remains free
|
|
||||||
software for all its users. We, the Free Software Foundation, use the
|
|
||||||
GNU General Public License for most of our software; it applies also to
|
|
||||||
any other work released this way by its authors. You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to prevent others from denying you
|
|
||||||
these rights or asking you to surrender the rights. Therefore, you have
|
|
||||||
certain responsibilities if you distribute copies of the software, or if
|
|
||||||
you modify it: responsibilities to respect the freedom of others.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must pass on to the recipients the same
|
|
||||||
freedoms that you received. You must make sure that they, too, receive
|
|
||||||
or can get the source code. And you must show them these terms so they
|
|
||||||
know their rights.
|
|
||||||
|
|
||||||
Developers that use the GNU GPL protect your rights with two steps:
|
|
||||||
(1) assert copyright on the software, and (2) offer you this License
|
|
||||||
giving you legal permission to copy, distribute and/or modify it.
|
|
||||||
|
|
||||||
For the developers' and authors' protection, the GPL clearly explains
|
|
||||||
that there is no warranty for this free software. For both users' and
|
|
||||||
authors' sake, the GPL requires that modified versions be marked as
|
|
||||||
changed, so that their problems will not be attributed erroneously to
|
|
||||||
authors of previous versions.
|
|
||||||
|
|
||||||
Some devices are designed to deny users access to install or run
|
|
||||||
modified versions of the software inside them, although the manufacturer
|
|
||||||
can do so. This is fundamentally incompatible with the aim of
|
|
||||||
protecting users' freedom to change the software. The systematic
|
|
||||||
pattern of such abuse occurs in the area of products for individuals to
|
|
||||||
use, which is precisely where it is most unacceptable. Therefore, we
|
|
||||||
have designed this version of the GPL to prohibit the practice for those
|
|
||||||
products. If such problems arise substantially in other domains, we
|
|
||||||
stand ready to extend this provision to those domains in future versions
|
|
||||||
of the GPL, as needed to protect the freedom of users.
|
|
||||||
|
|
||||||
Finally, every program is threatened constantly by software patents.
|
|
||||||
States should not allow patents to restrict development and use of
|
|
||||||
software on general-purpose computers, but in those that do, we wish to
|
|
||||||
avoid the special danger that patents applied to a free program could
|
|
||||||
make it effectively proprietary. To prevent this, the GPL assures that
|
|
||||||
patents cannot be used to render the program non-free.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
||||||
works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means to copy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of an
|
|
||||||
exact copy. The resulting work is called a "modified version" of the
|
|
||||||
earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user through
|
|
||||||
a computer network, with no transfer of a copy, is not conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices"
|
|
||||||
to the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work
|
|
||||||
for making modifications to it. "Object code" means any non-source
|
|
||||||
form of a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users
|
|
||||||
can regenerate automatically from other parts of the Corresponding
|
|
||||||
Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that
|
|
||||||
same work.
|
|
||||||
|
|
||||||
2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not
|
|
||||||
convey, without conditions so long as your license otherwise remains
|
|
||||||
in force. You may convey covered works to others for the sole purpose
|
|
||||||
of having them make modifications exclusively for you, or provide you
|
|
||||||
with facilities for running those works, provided that you comply with
|
|
||||||
the terms of this License in conveying all material for which you do
|
|
||||||
not control copyright. Those thus making or running the covered works
|
|
||||||
for you must do so exclusively on your behalf, under your direction
|
|
||||||
and control, on terms that prohibit them from making any copies of
|
|
||||||
your copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under
|
|
||||||
the conditions stated below. Sublicensing is not allowed; section 10
|
|
||||||
makes it unnecessary.
|
|
||||||
|
|
||||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such circumvention
|
|
||||||
is effected by exercising rights under this License with respect to
|
|
||||||
the covered work, and you disclaim any intention to limit operation or
|
|
||||||
modification of the work as a means of enforcing, against the work's
|
|
||||||
users, your or third parties' legal rights to forbid circumvention of
|
|
||||||
technological measures.
|
|
||||||
|
|
||||||
4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
|
|
||||||
b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under section
|
|
||||||
7. This requirement modifies the requirement in section 4 to
|
|
||||||
"keep intact all notices".
|
|
||||||
|
|
||||||
c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
|
|
||||||
d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms
|
|
||||||
of sections 4 and 5, provided that you also convey the
|
|
||||||
machine-readable Corresponding Source under the terms of this License,
|
|
||||||
in one of these ways:
|
|
||||||
|
|
||||||
a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
|
|
||||||
b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the
|
|
||||||
Corresponding Source from a network server at no charge.
|
|
||||||
|
|
||||||
c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
|
|
||||||
d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
|
|
||||||
e) Convey the object code using peer-to-peer transmission, provided
|
|
||||||
you inform other peers where the object code and Corresponding
|
|
||||||
Source of the work are being offered to the general public at no
|
|
||||||
charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal, family,
|
|
||||||
or household purposes, or (2) anything designed or sold for incorporation
|
|
||||||
into a dwelling. In determining whether a product is a consumer product,
|
|
||||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
||||||
product received by a particular user, "normally used" refers to a
|
|
||||||
typical or common use of that class of product, regardless of the status
|
|
||||||
of the particular user or of the way in which the particular user
|
|
||||||
actually uses, or expects or is expected to use, the product. A product
|
|
||||||
is a consumer product regardless of whether the product has substantial
|
|
||||||
commercial, industrial or non-consumer uses, unless such uses represent
|
|
||||||
the only significant mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to install
|
|
||||||
and execute modified versions of a covered work in that User Product from
|
|
||||||
a modified version of its Corresponding Source. The information must
|
|
||||||
suffice to ensure that the continued functioning of the modified object
|
|
||||||
code is in no case prevented or interfered with solely because
|
|
||||||
modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or updates
|
|
||||||
for a work that has been modified or installed by the recipient, or for
|
|
||||||
the User Product in which it has been modified or installed. Access to a
|
|
||||||
network may be denied when the modification itself materially and
|
|
||||||
adversely affects the operation of the network or violates the rules and
|
|
||||||
protocols for communication across the network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders of
|
|
||||||
that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
|
|
||||||
b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
|
|
||||||
c) Prohibiting misrepresentation of the origin of that material, or
|
|
||||||
requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
|
|
||||||
d) Limiting the use for publicity purposes of names of licensors or
|
|
||||||
authors of the material; or
|
|
||||||
|
|
||||||
e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
|
|
||||||
f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions of
|
|
||||||
it) with contractual assumptions of liability to the recipient, for
|
|
||||||
any liability that these contractual assumptions directly impose on
|
|
||||||
those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions;
|
|
||||||
the above requirements apply either way.
|
|
||||||
|
|
||||||
8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your
|
|
||||||
license from a particular copyright holder is reinstated (a)
|
|
||||||
provisionally, unless and until the copyright holder explicitly and
|
|
||||||
finally terminates your license, and (b) permanently, if the copyright
|
|
||||||
holder fails to notify you of the violation by some reasonable means
|
|
||||||
prior to 60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or
|
|
||||||
run a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims
|
|
||||||
owned or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within
|
|
||||||
the scope of its coverage, prohibits the exercise of, or is
|
|
||||||
conditioned on the non-exercise of one or more of the rights that are
|
|
||||||
specifically granted under this License. You may not convey a covered
|
|
||||||
work if you are a party to an arrangement with a third party that is
|
|
||||||
in the business of distributing software, under which you make payment
|
|
||||||
to the third party based on the extent of your activity of conveying
|
|
||||||
the work, and under which the third party grants, to any of the
|
|
||||||
parties who would receive the covered work from you, a discriminatory
|
|
||||||
patent license (a) in connection with copies of the covered work
|
|
||||||
conveyed by you (or copies made from those copies), or (b) primarily
|
|
||||||
for and in connection with specific products or compilations that
|
|
||||||
contain the covered work, unless you entered into that arrangement,
|
|
||||||
or that patent license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you may
|
|
||||||
not convey it at all. For example, if you agree to terms that obligate you
|
|
||||||
to collect a royalty for further conveying from those to whom you convey
|
|
||||||
the Program, the only way you could satisfy both those terms and this
|
|
||||||
License would be to refrain entirely from conveying the Program.
|
|
||||||
|
|
||||||
13. Use with the GNU Affero General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU Affero General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the special requirements of the GNU Affero General Public License,
|
|
||||||
section 13, concerning interaction through a network will apply to the
|
|
||||||
combination as such.
|
|
||||||
|
|
||||||
14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions of
|
|
||||||
the GNU General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the
|
|
||||||
Program specifies that a certain numbered version of the GNU General
|
|
||||||
Public License "or any later version" applies to it, you have the
|
|
||||||
option of following the terms and conditions either of that numbered
|
|
||||||
version or of any later version published by the Free Software
|
|
||||||
Foundation. If the Program does not specify a version number of the
|
|
||||||
GNU General Public License, you may choose any version ever published
|
|
||||||
by the Free Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future
|
|
||||||
versions of the GNU General Public License can be used, that proxy's
|
|
||||||
public statement of acceptance of a version permanently authorizes you
|
|
||||||
to choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
||||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
||||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
||||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
||||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
||||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
||||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
||||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
||||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
||||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
||||||
SUCH DAMAGES.
|
|
||||||
|
|
||||||
17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
state the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
{one line to give the program's name and a brief idea of what it does.}
|
|
||||||
Copyright (C) {year} {name of author}
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program does terminal interaction, make it output a short
|
|
||||||
notice like this when it starts in an interactive mode:
|
|
||||||
|
|
||||||
{project} Copyright (C) {year} {fullname}
|
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, your program's commands
|
|
||||||
might be different; for a GUI interface, you would use an "about box".
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
||||||
For more information on this, and how to apply and follow the GNU GPL, see
|
|
||||||
<http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your program
|
|
||||||
into proprietary programs. If your program is a subroutine library, you
|
|
||||||
may consider it more useful to permit linking proprietary applications with
|
|
||||||
the library. If this is what you want to do, use the GNU Lesser General
|
|
||||||
Public License instead of this License. But first, please read
|
|
||||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
|
||||||
|
|
|
@ -0,0 +1,636 @@
|
||||||
|
# GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 [Free Software Foundation, Inc.](http://fsf.org/)
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies of this license
|
||||||
|
document, but changing it is not allowed.
|
||||||
|
|
||||||
|
## Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for software and
|
||||||
|
other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed to take
|
||||||
|
away your freedom to share and change the works. By contrast, the GNU General
|
||||||
|
Public License is intended to guarantee your freedom to share and change all
|
||||||
|
versions of a program--to make sure it remains free software for all its users.
|
||||||
|
We, the Free Software Foundation, use the GNU General Public License for most
|
||||||
|
of our software; it applies also to any other work released this way by its
|
||||||
|
authors. You can apply it to your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not price. Our
|
||||||
|
General Public Licenses are designed to make sure that you have the freedom to
|
||||||
|
distribute copies of free software (and charge for them if you wish), that you
|
||||||
|
receive source code or can get it if you want it, that you can change the
|
||||||
|
software or use pieces of it in new free programs, and that you know you can do
|
||||||
|
these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you these rights
|
||||||
|
or asking you to surrender the rights. Therefore, you have certain
|
||||||
|
responsibilities if you distribute copies of the software, or if you modify it:
|
||||||
|
responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether gratis or for
|
||||||
|
a fee, you must pass on to the recipients the same freedoms that you received.
|
||||||
|
You must make sure that they, too, receive or can get the source code. And you
|
||||||
|
must show them these terms so they know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
|
||||||
|
1. assert copyright on the software, and
|
||||||
|
2. offer you this License giving you legal permission to copy, distribute
|
||||||
|
and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains that
|
||||||
|
there is no warranty for this free software. For both users' and authors' sake,
|
||||||
|
the GPL requires that modified versions be marked as changed, so that their
|
||||||
|
problems will not be attributed erroneously to authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run modified
|
||||||
|
versions of the software inside them, although the manufacturer can do so. This
|
||||||
|
is fundamentally incompatible with the aim of protecting users' freedom to
|
||||||
|
change the software. The systematic pattern of such abuse occurs in the area of
|
||||||
|
products for individuals to use, which is precisely where it is most
|
||||||
|
unacceptable. Therefore, we have designed this version of the GPL to prohibit
|
||||||
|
the practice for those products. If such problems arise substantially in other
|
||||||
|
domains, we stand ready to extend this provision to those domains in future
|
||||||
|
versions of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents. States
|
||||||
|
should not allow patents to restrict development and use of software on
|
||||||
|
general-purpose computers, but in those that do, we wish to avoid the special
|
||||||
|
danger that patents applied to a free program could make it effectively
|
||||||
|
proprietary. To prevent this, the GPL assures that patents cannot be used to
|
||||||
|
render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and modification
|
||||||
|
follow.
|
||||||
|
|
||||||
|
## TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
### 0. Definitions.
|
||||||
|
|
||||||
|
*This License* refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
*Copyright* also means copyright-like laws that apply to other kinds of works,
|
||||||
|
such as semiconductor masks.
|
||||||
|
|
||||||
|
*The Program* refers to any copyrightable work licensed under this License.
|
||||||
|
Each licensee is addressed as *you*. *Licensees* and *recipients* may be
|
||||||
|
individuals or organizations.
|
||||||
|
|
||||||
|
To *modify* a work means to copy from or adapt all or part of the work in a
|
||||||
|
fashion requiring copyright permission, other than the making of an exact copy.
|
||||||
|
The resulting work is called a *modified version* of the earlier work or a work
|
||||||
|
*based on* the earlier work.
|
||||||
|
|
||||||
|
A *covered work* means either the unmodified Program or a work based on the
|
||||||
|
Program.
|
||||||
|
|
||||||
|
To *propagate* a work means to do anything with it that, without permission,
|
||||||
|
would make you directly or secondarily liable for infringement under applicable
|
||||||
|
copyright law, except executing it on a computer or modifying a private copy.
|
||||||
|
Propagation includes copying, distribution (with or without modification),
|
||||||
|
making available to the public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To *convey* a work means any kind of propagation that enables other parties to
|
||||||
|
make or receive copies. Mere interaction with a user through a computer
|
||||||
|
network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays *Appropriate Legal Notices* to the
|
||||||
|
extent that it includes a convenient and prominently visible feature that
|
||||||
|
|
||||||
|
1. displays an appropriate copyright notice, and
|
||||||
|
2. tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the work
|
||||||
|
under this License, and how to view a copy of this License.
|
||||||
|
|
||||||
|
If the interface presents a list of user commands or options, such as a menu, a
|
||||||
|
prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
### 1. Source Code.
|
||||||
|
|
||||||
|
The *source code* for a work means the preferred form of the work for making
|
||||||
|
modifications to it. *Object code* means any non-source form of a work.
|
||||||
|
|
||||||
|
A *Standard Interface* means an interface that either is an official standard
|
||||||
|
defined by a recognized standards body, or, in the case of interfaces specified
|
||||||
|
for a particular programming language, one that is widely used among developers
|
||||||
|
working in that language.
|
||||||
|
|
||||||
|
The *System Libraries* of an executable work include anything, other than the
|
||||||
|
work as a whole, that (a) is included in the normal form of packaging a Major
|
||||||
|
Component, but which is not part of that Major Component, and (b) serves only
|
||||||
|
to enable use of the work with that Major Component, or to implement a Standard
|
||||||
|
Interface for which an implementation is available to the public in source code
|
||||||
|
form. A *Major Component*, in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system (if any) on
|
||||||
|
which the executable work runs, or a compiler used to produce the work, or an
|
||||||
|
object code interpreter used to run it.
|
||||||
|
|
||||||
|
The *Corresponding Source* for a work in object code form means all the source
|
||||||
|
code needed to generate, install, and (for an executable work) run the object
|
||||||
|
code and to modify the work, including scripts to control those activities.
|
||||||
|
However, it does not include the work's System Libraries, or general-purpose
|
||||||
|
tools or generally available free programs which are used unmodified in
|
||||||
|
performing those activities but which are not part of the work. For example,
|
||||||
|
Corresponding Source includes interface definition files associated with source
|
||||||
|
files for the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require, such as
|
||||||
|
by intimate data communication or control flow between those subprograms and
|
||||||
|
other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users can regenerate
|
||||||
|
automatically from other parts of the Corresponding Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that same work.
|
||||||
|
|
||||||
|
### 2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of copyright on
|
||||||
|
the Program, and are irrevocable provided the stated conditions are met. This
|
||||||
|
License explicitly affirms your unlimited permission to run the unmodified
|
||||||
|
Program. The output from running a covered work is covered by this License only
|
||||||
|
if the output, given its content, constitutes a covered work. This License
|
||||||
|
acknowledges your rights of fair use or other equivalent, as provided by
|
||||||
|
copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not convey, without
|
||||||
|
conditions so long as your license otherwise remains in force. You may convey
|
||||||
|
covered works to others for the sole purpose of having them make modifications
|
||||||
|
exclusively for you, or provide you with facilities for running those works,
|
||||||
|
provided that you comply with the terms of this License in conveying all
|
||||||
|
material for which you do not control copyright. Those thus making or running
|
||||||
|
the covered works for you must do so exclusively on your behalf, under your
|
||||||
|
direction and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under the
|
||||||
|
conditions stated below. Sublicensing is not allowed; section 10 makes it
|
||||||
|
unnecessary.
|
||||||
|
|
||||||
|
### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological measure
|
||||||
|
under any applicable law fulfilling obligations under article 11 of the WIPO
|
||||||
|
copyright treaty adopted on 20 December 1996, or similar laws prohibiting or
|
||||||
|
restricting circumvention of such measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention is
|
||||||
|
effected by exercising rights under this License with respect to the covered
|
||||||
|
work, and you disclaim any intention to limit operation or modification of the
|
||||||
|
work as a means of enforcing, against the work's users, your or third parties'
|
||||||
|
legal rights to forbid circumvention of technological measures.
|
||||||
|
|
||||||
|
### 4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you receive it,
|
||||||
|
in any medium, provided that you conspicuously and appropriately publish on
|
||||||
|
each copy an appropriate copyright notice; keep intact all notices stating that
|
||||||
|
this License and any non-permissive terms added in accord with section 7 apply
|
||||||
|
to the code; keep intact all notices of the absence of any warranty; and give
|
||||||
|
all recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey, and you may
|
||||||
|
offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
### 5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to produce it
|
||||||
|
from the Program, in the form of source code under the terms of section 4,
|
||||||
|
provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
- a) The work must carry prominent notices stating that you modified it, and
|
||||||
|
giving a relevant date.
|
||||||
|
- b) The work must carry prominent notices stating that it is released under
|
||||||
|
this License and any conditions added under section 7. This requirement
|
||||||
|
modifies the requirement in section 4 to *keep intact all notices*.
|
||||||
|
- c) You must license the entire work, as a whole, under this License to
|
||||||
|
anyone who comes into possession of a copy. This License will therefore
|
||||||
|
apply, along with any applicable section 7 additional terms, to the whole
|
||||||
|
of the work, and all its parts, regardless of how they are packaged. This
|
||||||
|
License gives no permission to license the work in any other way, but it
|
||||||
|
does not invalidate such permission if you have separately received it.
|
||||||
|
- d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your work need
|
||||||
|
not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent works,
|
||||||
|
which are not by their nature extensions of the covered work, and which are not
|
||||||
|
combined with it such as to form a larger program, in or on a volume of a
|
||||||
|
storage or distribution medium, is called an *aggregate* if the compilation and
|
||||||
|
its resulting copyright are not used to limit the access or legal rights of the
|
||||||
|
compilation's users beyond what the individual works permit. Inclusion of a
|
||||||
|
covered work in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
### 6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms of sections 4
|
||||||
|
and 5, provided that you also convey the machine-readable Corresponding Source
|
||||||
|
under the terms of this License, in one of these ways:
|
||||||
|
|
||||||
|
- a) Convey the object code in, or embodied in, a physical product (including
|
||||||
|
a physical distribution medium), accompanied by the Corresponding Source
|
||||||
|
fixed on a durable physical medium customarily used for software
|
||||||
|
interchange.
|
||||||
|
- b) Convey the object code in, or embodied in, a physical product (including
|
||||||
|
a physical distribution medium), accompanied by a written offer, valid for
|
||||||
|
at least three years and valid for as long as you offer spare parts or
|
||||||
|
customer support for that product model, to give anyone who possesses the
|
||||||
|
object code either
|
||||||
|
1. a copy of the Corresponding Source for all the software in the product
|
||||||
|
that is covered by this License, on a durable physical medium
|
||||||
|
customarily used for software interchange, for a price no more than your
|
||||||
|
reasonable cost of physically performing this conveying of source, or
|
||||||
|
2. access to copy the Corresponding Source from a network server at no
|
||||||
|
charge.
|
||||||
|
- c) Convey individual copies of the object code with a copy of the written
|
||||||
|
offer to provide the Corresponding Source. This alternative is allowed only
|
||||||
|
occasionally and noncommercially, and only if you received the object code
|
||||||
|
with such an offer, in accord with subsection 6b.
|
||||||
|
- d) Convey the object code by offering access from a designated place
|
||||||
|
(gratis or for a charge), and offer equivalent access to the Corresponding
|
||||||
|
Source in the same way through the same place at no further charge. You
|
||||||
|
need not require recipients to copy the Corresponding Source along with the
|
||||||
|
object code. If the place to copy the object code is a network server, the
|
||||||
|
Corresponding Source may be on a different server operated by you or a
|
||||||
|
third party) that supports equivalent copying facilities, provided you
|
||||||
|
maintain clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the Corresponding
|
||||||
|
Source, you remain obligated to ensure that it is available for as long as
|
||||||
|
needed to satisfy these requirements.
|
||||||
|
- e) Convey the object code using peer-to-peer transmission, provided you
|
||||||
|
inform other peers where the object code and Corresponding Source of the
|
||||||
|
work are being offered to the general public at no charge under subsection
|
||||||
|
6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded from the
|
||||||
|
Corresponding Source as a System Library, need not be included in conveying the
|
||||||
|
object code work.
|
||||||
|
|
||||||
|
A *User Product* is either
|
||||||
|
|
||||||
|
1. a *consumer product*, which means any tangible personal property which is
|
||||||
|
normally used for personal, family, or household purposes, or
|
||||||
|
2. anything designed or sold for incorporation into a dwelling.
|
||||||
|
|
||||||
|
In determining whether a product is a consumer product, doubtful cases shall be
|
||||||
|
resolved in favor of coverage. For a particular product received by a
|
||||||
|
particular user, *normally used* refers to a typical or common use of that
|
||||||
|
class of product, regardless of the status of the particular user or of the way
|
||||||
|
in which the particular user actually uses, or expects or is expected to use,
|
||||||
|
the product. A product is a consumer product regardless of whether the product
|
||||||
|
has substantial commercial, industrial or non-consumer uses, unless such uses
|
||||||
|
represent the only significant mode of use of the product.
|
||||||
|
|
||||||
|
*Installation Information* for a User Product means any methods, procedures,
|
||||||
|
authorization keys, or other information required to install and execute
|
||||||
|
modified versions of a covered work in that User Product from a modified
|
||||||
|
version of its Corresponding Source. The information must suffice to ensure
|
||||||
|
that the continued functioning of the modified object code is in no case
|
||||||
|
prevented or interfered with solely because modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as part of a
|
||||||
|
transaction in which the right of possession and use of the User Product is
|
||||||
|
transferred to the recipient in perpetuity or for a fixed term (regardless of
|
||||||
|
how the transaction is characterized), the Corresponding Source conveyed under
|
||||||
|
this section must be accompanied by the Installation Information. But this
|
||||||
|
requirement does not apply if neither you nor any third party retains the
|
||||||
|
ability to install modified object code on the User Product (for example, the
|
||||||
|
work has been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates for a
|
||||||
|
work that has been modified or installed by the recipient, or for the User
|
||||||
|
Product in which it has been modified or installed. Access to a network may be
|
||||||
|
denied when the modification itself materially and adversely affects the
|
||||||
|
operation of the network or violates the rules and protocols for communication
|
||||||
|
across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided, in accord
|
||||||
|
with this section must be in a format that is publicly documented (and with an
|
||||||
|
implementation available to the public in source code form), and must require
|
||||||
|
no special password or key for unpacking, reading or copying.
|
||||||
|
|
||||||
|
### 7. Additional Terms.
|
||||||
|
|
||||||
|
*Additional permissions* are terms that supplement the terms of this License by
|
||||||
|
making exceptions from one or more of its conditions. Additional permissions
|
||||||
|
that are applicable to the entire Program shall be treated as though they were
|
||||||
|
included in this License, to the extent that they are valid under applicable
|
||||||
|
law. If additional permissions apply only to part of the Program, that part may
|
||||||
|
be used separately under those permissions, but the entire Program remains
|
||||||
|
governed by this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option remove any
|
||||||
|
additional permissions from that copy, or from any part of it. (Additional
|
||||||
|
permissions may be written to require their own removal in certain cases when
|
||||||
|
you modify the work.) You may place additional permissions on material, added
|
||||||
|
by you to a covered work, for which you have or can give appropriate copyright
|
||||||
|
permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you add to a
|
||||||
|
covered work, you may (if authorized by the copyright holders of that material)
|
||||||
|
supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
- a) Disclaiming warranty or limiting liability differently from the terms of
|
||||||
|
sections 15 and 16 of this License; or
|
||||||
|
- b) Requiring preservation of specified reasonable legal notices or author
|
||||||
|
attributions in that material or in the Appropriate Legal Notices displayed
|
||||||
|
by works containing it; or
|
||||||
|
- c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in reasonable
|
||||||
|
ways as different from the original version; or
|
||||||
|
- d) Limiting the use for publicity purposes of names of licensors or authors
|
||||||
|
of the material; or
|
||||||
|
- e) Declining to grant rights under trademark law for use of some trade
|
||||||
|
names, trademarks, or service marks; or
|
||||||
|
- f) Requiring indemnification of licensors and authors of that material by
|
||||||
|
anyone who conveys the material (or modified versions of it) with
|
||||||
|
contractual assumptions of liability to the recipient, for any liability
|
||||||
|
that these contractual assumptions directly impose on those licensors and
|
||||||
|
authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered *further restrictions*
|
||||||
|
within the meaning of section 10. If the Program as you received it, or any
|
||||||
|
part of it, contains a notice stating that it is governed by this License along
|
||||||
|
with a term that is a further restriction, you may remove that term. If a
|
||||||
|
license document contains a further restriction but permits relicensing or
|
||||||
|
conveying under this License, you may add to a covered work material governed
|
||||||
|
by the terms of that license document, provided that the further restriction
|
||||||
|
does not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you must place,
|
||||||
|
in the relevant source files, a statement of the additional terms that apply to
|
||||||
|
those files, or a notice indicating where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the form of a
|
||||||
|
separately written license, or stated as exceptions; the above requirements
|
||||||
|
apply either way.
|
||||||
|
|
||||||
|
### 8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly provided
|
||||||
|
under this License. Any attempt otherwise to propagate or modify it is void,
|
||||||
|
and will automatically terminate your rights under this License (including any
|
||||||
|
patent licenses granted under the third paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your license from a
|
||||||
|
particular copyright holder is reinstated
|
||||||
|
|
||||||
|
- a) provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and
|
||||||
|
- b) permanently, if the copyright holder fails to notify you of the
|
||||||
|
violation by some reasonable means prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is reinstated
|
||||||
|
permanently if the copyright holder notifies you of the violation by some
|
||||||
|
reasonable means, this is the first time you have received notice of violation
|
||||||
|
of this License (for any work) from that copyright holder, and you cure the
|
||||||
|
violation prior to 30 days after your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the licenses
|
||||||
|
of parties who have received copies or rights from you under this License. If
|
||||||
|
your rights have been terminated and not permanently reinstated, you do not
|
||||||
|
qualify to receive new licenses for the same material under section 10.
|
||||||
|
|
||||||
|
### 9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or run a copy
|
||||||
|
of the Program. Ancillary propagation of a covered work occurring solely as a
|
||||||
|
consequence of using peer-to-peer transmission to receive a copy likewise does
|
||||||
|
not require acceptance. However, nothing other than this License grants you
|
||||||
|
permission to propagate or modify any covered work. These actions infringe
|
||||||
|
copyright if you do not accept this License. Therefore, by modifying or
|
||||||
|
propagating a covered work, you indicate your acceptance of this License to do
|
||||||
|
so.
|
||||||
|
|
||||||
|
### 10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically receives a
|
||||||
|
license from the original licensors, to run, modify and propagate that work,
|
||||||
|
subject to this License. You are not responsible for enforcing compliance by
|
||||||
|
third parties with this License.
|
||||||
|
|
||||||
|
An *entity transaction* is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered work
|
||||||
|
results from an entity transaction, each party to that transaction who receives
|
||||||
|
a copy of the work also receives whatever licenses to the work the party's
|
||||||
|
predecessor in interest had or could give under the previous paragraph, plus a
|
||||||
|
right to possession of the Corresponding Source of the work from the
|
||||||
|
predecessor in interest, if the predecessor has it or can get it with
|
||||||
|
reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the rights
|
||||||
|
granted or affirmed under this License. For example, you may not impose a
|
||||||
|
license fee, royalty, or other charge for exercise of rights granted under this
|
||||||
|
License, and you may not initiate litigation (including a cross-claim or
|
||||||
|
counterclaim in a lawsuit) alleging that any patent claim is infringed by
|
||||||
|
making, using, selling, offering for sale, or importing the Program or any
|
||||||
|
portion of it.
|
||||||
|
|
||||||
|
### 11. Patents.
|
||||||
|
|
||||||
|
A *contributor* is a copyright holder who authorizes use under this License of
|
||||||
|
the Program or a work on which the Program is based. The work thus licensed is
|
||||||
|
called the contributor's *contributor version*.
|
||||||
|
|
||||||
|
A contributor's *essential patent claims* are all patent claims owned or
|
||||||
|
controlled by the contributor, whether already acquired or hereafter acquired,
|
||||||
|
that would be infringed by some manner, permitted by this License, of making,
|
||||||
|
using, or selling its contributor version, but do not include claims that would
|
||||||
|
be infringed only as a consequence of further modification of the contributor
|
||||||
|
version. For purposes of this definition, *control* includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of this
|
||||||
|
License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free patent
|
||||||
|
license under the contributor's essential patent claims, to make, use, sell,
|
||||||
|
offer for sale, import and otherwise run, modify and propagate the contents of
|
||||||
|
its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a *patent license* is any express agreement
|
||||||
|
or commitment, however denominated, not to enforce a patent (such as an express
|
||||||
|
permission to practice a patent or covenant not to sue for patent
|
||||||
|
infringement). To *grant* such a patent license to a party means to make such
|
||||||
|
an agreement or commitment not to enforce a patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license, and the
|
||||||
|
Corresponding Source of the work is not available for anyone to copy, free of
|
||||||
|
charge and under the terms of this License, through a publicly available
|
||||||
|
network server or other readily accessible means, then you must either
|
||||||
|
|
||||||
|
1. cause the Corresponding Source to be so available, or
|
||||||
|
2. arrange to deprive yourself of the benefit of the patent license for this
|
||||||
|
particular work, or
|
||||||
|
3. arrange, in a manner consistent with the requirements of this License, to
|
||||||
|
extend the patent license to downstream recipients.
|
||||||
|
|
||||||
|
*Knowingly relying* means you have actual knowledge that, but for the patent
|
||||||
|
license, your conveying the covered work in a country, or your recipient's use
|
||||||
|
of the covered work in a country, would infringe one or more identifiable
|
||||||
|
patents in that country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or arrangement, you
|
||||||
|
convey, or propagate by procuring conveyance of, a covered work, and grant a
|
||||||
|
patent license to some of the parties receiving the covered work authorizing
|
||||||
|
them to use, propagate, modify or convey a specific copy of the covered work,
|
||||||
|
then the patent license you grant is automatically extended to all recipients
|
||||||
|
of the covered work and works based on it.
|
||||||
|
|
||||||
|
A patent license is *discriminatory* if it does not include within the scope of
|
||||||
|
its coverage, prohibits the exercise of, or is conditioned on the non-exercise
|
||||||
|
of one or more of the rights that are specifically granted under this License.
|
||||||
|
You may not convey a covered work if you are a party to an arrangement with a
|
||||||
|
third party that is in the business of distributing software, under which you
|
||||||
|
make payment to the third party based on the extent of your activity of
|
||||||
|
conveying the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory patent
|
||||||
|
license
|
||||||
|
|
||||||
|
- a) in connection with copies of the covered work conveyed by you (or copies
|
||||||
|
made from those copies), or
|
||||||
|
- b) primarily for and in connection with specific products or compilations
|
||||||
|
that contain the covered work, unless you entered into that arrangement, or
|
||||||
|
that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting any implied
|
||||||
|
license or other defenses to infringement that may otherwise be available to
|
||||||
|
you under applicable patent law.
|
||||||
|
|
||||||
|
### 12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not excuse
|
||||||
|
you from the conditions of this License. If you cannot convey a covered work so
|
||||||
|
as to satisfy simultaneously your obligations under this License and any other
|
||||||
|
pertinent obligations, then as a consequence you may not convey it at all. For
|
||||||
|
example, if you agree to terms that obligate you to collect a royalty for
|
||||||
|
further conveying from those to whom you convey the Program, the only way you
|
||||||
|
could satisfy both those terms and this License would be to refrain entirely
|
||||||
|
from conveying the Program.
|
||||||
|
|
||||||
|
### 13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have permission to
|
||||||
|
link or combine any covered work with a work licensed under version 3 of the
|
||||||
|
GNU Affero General Public License into a single combined work, and to convey
|
||||||
|
the resulting work. The terms of this License will continue to apply to the
|
||||||
|
part which is the covered work, but the special requirements of the GNU Affero
|
||||||
|
General Public License, section 13, concerning interaction through a network
|
||||||
|
will apply to the combination as such.
|
||||||
|
|
||||||
|
### 14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of the GNU
|
||||||
|
General Public License from time to time. Such new versions will be similar in
|
||||||
|
spirit to the present version, but may differ in detail to address new problems
|
||||||
|
or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program specifies
|
||||||
|
that a certain numbered version of the GNU General Public License *or any later
|
||||||
|
version* applies to it, you have the option of following the terms and
|
||||||
|
conditions either of that numbered version or of any later version published by
|
||||||
|
the Free Software Foundation. If the Program does not specify a version number
|
||||||
|
of the GNU General Public License, you may choose any version ever published by
|
||||||
|
the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future versions of the
|
||||||
|
GNU General Public License can be used, that proxy's public statement of
|
||||||
|
acceptance of a version permanently authorizes you to choose that version for
|
||||||
|
the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different permissions.
|
||||||
|
However, no additional obligations are imposed on any author or copyright
|
||||||
|
holder as a result of your choosing to follow a later version.
|
||||||
|
|
||||||
|
### 15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
|
||||||
|
LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
|
||||||
|
PARTIES PROVIDE THE PROGRAM *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER
|
||||||
|
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE
|
||||||
|
QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
||||||
|
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
||||||
|
CORRECTION.
|
||||||
|
|
||||||
|
### 16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY
|
||||||
|
COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS
|
||||||
|
PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
|
||||||
|
INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
|
||||||
|
THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
|
||||||
|
INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE
|
||||||
|
PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY
|
||||||
|
HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
### 17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided above cannot
|
||||||
|
be given local legal effect according to their terms, reviewing courts shall
|
||||||
|
apply local law that most closely approximates an absolute waiver of all civil
|
||||||
|
liability in connection with the Program, unless a warranty or assumption of
|
||||||
|
liability accompanies a copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
## END OF TERMS AND CONDITIONS ###
|
||||||
|
|
||||||
|
### How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest possible
|
||||||
|
use to the public, the best way to achieve this is to make it free software
|
||||||
|
which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest to attach
|
||||||
|
them to the start of each source file to most effectively state the exclusion
|
||||||
|
of warranty; and each file should have at least the *copyright* line and a
|
||||||
|
pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short notice like
|
||||||
|
this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w` and `show c` should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands might
|
||||||
|
be different; for a GUI interface, you would use an *about box*.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school, if
|
||||||
|
any, to sign a *copyright disclaimer* for the program, if necessary. For more
|
||||||
|
information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
[http://www.gnu.org/licenses/](http://www.gnu.org/licenses/).
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may consider
|
||||||
|
it more useful to permit linking proprietary applications with the library. If
|
||||||
|
this is what you want to do, use the GNU Lesser General Public License instead
|
||||||
|
of this License. But first, please read
|
||||||
|
[http://www.gnu.org/philosophy/why-not-lgpl.html](http://www.gnu.org/philosophy/why-not-lgpl.html).
|
|
@ -1,5 +0,0 @@
|
||||||
Manifest-Version: 1.0
|
|
||||||
Ant-Version: Apache Ant 1.8.4
|
|
||||||
Created-By: 1.7.0_05-b06 (Oracle Corporation)
|
|
||||||
Main-Class: com.cburch.logisim.Main
|
|
||||||
|
|
56
README.md
|
@ -26,49 +26,56 @@ We have decided to release this new Logisim version under the name logisim-evolu
|
||||||
* code refactoring
|
* code refactoring
|
||||||
* ...
|
* ...
|
||||||
|
|
||||||
## How to install logisim-evolution
|
## Running logisim-evolution
|
||||||
You can find an already compiled **stable** version of the code [here](http://reds-data.heig-vd.ch/logisim-evolution/logisim-evolution.jar).
|
You can find an already compiled **stable** version of the code [here](http://reds-data.heig-vd.ch/logisim-evolution/logisim-evolution.jar).
|
||||||
To execute it, click on the downloaded file or type in a console
|
To execute it, run the downloaded file or type in a console/terminal:
|
||||||
```bash
|
```bash
|
||||||
java -jar logisim-evolution.jar
|
java -jar logisim-evolution.jar
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also compile it by yourself by cloning the repository on your local machine. Once this is done, enter the directory and execute
|
You can also compile it by yourself by cloning the repository on your local machine.
|
||||||
|
Once this is done, enter the directory and execute:
|
||||||
```bash
|
```bash
|
||||||
ant run
|
./gradlew run
|
||||||
|
```
|
||||||
|
or on windows:
|
||||||
|
```bash
|
||||||
|
gradlew run
|
||||||
```
|
```
|
||||||
This also creates locally a .jar file, that you can distribute and use on other machines.
|
|
||||||
|
|
||||||
## Testing Logisim-evolution
|
If you wish to create a distribution which can then be run without gradle, execute:
|
||||||
As Logisim-evolution needs updates (new features and patches) and currently lacks unit tests, the *testing* branch was created.
|
```bash
|
||||||
|
./gradlew shadowJar
|
||||||
|
```
|
||||||
|
or on windows:
|
||||||
|
```bash
|
||||||
|
gradlew shadowJar
|
||||||
|
```
|
||||||
|
which will create a new jar file in 'build/libs' called 'logisim-evolution-_version_-all.jar' you can distribute freely.
|
||||||
|
|
||||||
|
## Testing logisim-evolution
|
||||||
|
As logisim-evolution needs updates (new features and patches) and currently lacks unit tests, the *testing* branch was created.
|
||||||
The goal of this branch is to add new features/patches without affecting the release on branch master.
|
The goal of this branch is to add new features/patches without affecting the release on branch master.
|
||||||
Users who are willing test new features should checkout the testing branch. The feedback from users is really appreciated as it makes logisim-evolution better. Feel free to use the issue tab to report bugs/features.
|
Users who are willing test new features should checkout the testing branch. The feedback from users is really appreciated as it makes logisim-evolution better. Feel free to use the issue tab to report bugs and suggest features.
|
||||||
|
|
||||||
Then every semester, the testing branch will be merged in the master for a new release.
|
Then every semester, the testing branch will be merged in the master for a new release.
|
||||||
|
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
[Here](http://reds-data.heig-vd.ch/logisim-evolution/IntroToLogisimEnglish.pdf) you can find a tutorial (French version [here](http://reds-data.heig-vd.ch/logisim-evolution/tutoLogisim.pdf)) that explains some basic usage of Logisim. The electronic card referenced in the tutorial is a small card we use in our laboratories -- you won't be able to buy it in a store -- but the descriptions should be good enough to be used for another generic board.
|
[Here](http://reds-data.heig-vd.ch/logisim-evolution/IntroToLogisimEnglish.pdf) you can find a tutorial (French version [here](http://reds-data.heig-vd.ch/logisim-evolution/tutoLogisim.pdf)) that explains some basic usage of Logisim. The electronic card referenced in the tutorial is a small card we use in our laboratories -- you won't be able to buy it in a store -- but the descriptions should be good enough to be used for another generic board.
|
||||||
|
|
||||||
Another good reference is [this book](http://www.lulu.com/shop/george-self/exploring-digital-logic-with-logisim-ebook/ebook/product-21118223.html), where basic electronics is explained with the help of Logisim.
|
Another good reference is [this book](http://www.lulu.com/shop/george-self/exploring-digital-logic-with-logisim-ebook/ebook/product-21118223.html), where basic electronics is explained with the help of Logisim.
|
||||||
|
|
||||||
## Editing logisim-evolution in Eclipse
|
## Development
|
||||||
To import directly logisim-evolution in Eclipse, you can use Eclipse's import wizard:
|
Logisim-evolution uses gradle for project management which means it can be easily imported into most modern IDEs.
|
||||||
|
|
||||||
*Import -> git project -> [put the connection details] -> New project -> Java project from Ant*
|
Instructions on how to import a gradle project into Eclipse can be found [here](https://www.eclipse.org/community/eclipse_newsletter/2018/february/buildship.php).
|
||||||
|
|
||||||
You will, however, encounter a problem when you will try to execute the code. In particular, an exception *ExceptionInInitializerError* will be thrown. To solve this, execute the *eclipse_fix.sh* script in the program's directory, or go in the *bin/* subdirectory and create links to the following directories available in the program's directory
|
|
||||||
* *boards_model*
|
|
||||||
* *javax*
|
|
||||||
* *libs*
|
|
||||||
* *resources*
|
|
||||||
* *doc*
|
|
||||||
|
|
||||||
|
Instructions on how to import a gradle project into IntelliJ IDEA can be found [here](https://www.jetbrains.com/help/idea/gradle.html) under "Importing a project from a Gradle model" title.
|
||||||
|
|
||||||
## Retro-compatibility
|
## Retro-compatibility
|
||||||
We cannot assure retro-compatibility of logisim-evolution with files created with the original Logisim.
|
We cannot assure retro-compatibility of logisim-evolution with files created with the original Logisim.
|
||||||
We have incorporated a parser that alters the name of the components to satisfy VHDL requirements for variable names,
|
We have incorporated a parser that alters the name of the components to satisfy VHDL requirements for variable names,
|
||||||
but components evolved in shape since then (think, for instance, to RAM and counters).
|
but components evolved in shape since then (e.g. RAM and counters).
|
||||||
You might need to rework a bit your circuits when opening them with logisim-evolution -- but the changes will be stored
|
You might need to rework a bit your circuits when opening them with logisim-evolution -- but the changes will be stored
|
||||||
in the new format, therefore you have to do your work only once.
|
in the new format, therefore you have to do your work only once.
|
||||||
|
|
||||||
|
@ -80,7 +87,6 @@ Logisim-evolution is a continuously-growing software, and we have several ideas
|
||||||
* ...
|
* ...
|
||||||
If you are willing to contribute with any of these, please feel free to contact us!
|
If you are willing to contribute with any of these, please feel free to contact us!
|
||||||
|
|
||||||
|
|
||||||
## How to get support for logisim-evolution
|
## How to get support for logisim-evolution
|
||||||
Unfortunately, we do not have enough resources to provide direct support for logisim-evolution.
|
Unfortunately, we do not have enough resources to provide direct support for logisim-evolution.
|
||||||
We will, however, try to deal with the raised issues in a *best-effort* way.
|
We will, however, try to deal with the raised issues in a *best-effort* way.
|
||||||
|
@ -88,10 +94,10 @@ We will, however, try to deal with the raised issues in a *best-effort* way.
|
||||||
If you find a bug or have an idea for an interesting feature, please do not hesitate to open a ticket!
|
If you find a bug or have an idea for an interesting feature, please do not hesitate to open a ticket!
|
||||||
|
|
||||||
## License
|
## License
|
||||||
The code is licensed under the GNU GENERAL PUBLIC LICENSE, version 3.
|
The code is licensed under [GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html).
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
The following institutions/people actively contributed to Logisim-evolution:
|
The following institutions/people actively contributed to logisim-evolution:
|
||||||
* Carl Burch - Hendrix College - USA
|
* Carl Burch - Hendrix College - USA
|
||||||
* [Haute École Spécialisée Bernoise](http://www.bfh.ch) - Switzerland
|
* [Haute École Spécialisée Bernoise](http://www.bfh.ch) - Switzerland
|
||||||
* [Haute École du paysage, d'ingénierie et d'architecture de Genève](http://hepia.hesge.ch) - Switzerland
|
* [Haute École du paysage, d'ingénierie et d'architecture de Genève](http://hepia.hesge.ch) - Switzerland
|
||||||
|
@ -107,4 +113,4 @@ If you feel that your name should be in this list, please feel free to send us a
|
||||||
* Logisim for the CS3410 course, Cornell's University [(link)](http://www.cs.cornell.edu/courses/cs3410/2015sp/) - they have a very interesting test vector feature, that was only recently integrated into logisim-evolution.
|
* Logisim for the CS3410 course, Cornell's University [(link)](http://www.cs.cornell.edu/courses/cs3410/2015sp/) - they have a very interesting test vector feature, that was only recently integrated into logisim-evolution.
|
||||||
|
|
||||||
## Alternatives
|
## Alternatives
|
||||||
* A complete rewriting of Logisim, called Digital, has been developed by Prof. Helmut Neemann of the Baden-Württemberg Cooperative State University Mosbach. You can find it [(here)](https://github.com/hneemann/Digital).
|
* A complete rewriting of Logisim, called Digital, has been developed by Prof. Helmut Neemann of the Baden-Württemberg Cooperative State University Mosbach. You can find it [here](https://github.com/hneemann/Digital).
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
java
|
||||||
|
application
|
||||||
|
id("com.github.johnrengelman.shadow") version "4.0.1"
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClassName = "com.cburch.logisim.Main"
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(fileTree("lib") {
|
||||||
|
include("**/*.jar")
|
||||||
|
})
|
||||||
|
implementation("org.hamcrest:hamcrest-core:1.3")
|
||||||
|
implementation("javax.help:javahelp:2.0.05")
|
||||||
|
// implementation("com.fifesoft:rsyntaxtextarea:2.6.1") // Currently using 3.0.0-SNAPSHOT
|
||||||
|
implementation("org.slf4j:slf4j-api:1.7.8")
|
||||||
|
implementation("org.slf4j:slf4j-simple:1.7.8")
|
||||||
|
|
||||||
|
testImplementation("ch.qos.logback:logback-classic:1.1.2")
|
||||||
|
testImplementation("ch.qos.logback:logback-core:1.1.2")
|
||||||
|
testImplementation("junit:junit:4.12")
|
||||||
|
}
|
||||||
|
|
||||||
|
java {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
|
||||||
|
task<Jar>("sourcesJar") {
|
||||||
|
group = "build"
|
||||||
|
description = "Creates a source jar archive."
|
||||||
|
dependsOn.add("classes")
|
||||||
|
classifier = "src"
|
||||||
|
|
||||||
|
from(sourceSets.main.get().allSource)
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks {
|
||||||
|
jar {
|
||||||
|
manifest {
|
||||||
|
attributes.putAll(mapOf(
|
||||||
|
"Implementation-Title" to name,
|
||||||
|
"Implementation-Version" to version
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
from(".") {
|
||||||
|
include("LICENSE")
|
||||||
|
include("README.md")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
shadowJar {
|
||||||
|
from(".") {
|
||||||
|
include("LICENSE")
|
||||||
|
include("README.md")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
185
build.xml
|
@ -1,185 +0,0 @@
|
||||||
<!--
|
|
||||||
logisim-evolution : Ant build configuration file
|
|
||||||
|
|
||||||
Original code by Adrien Lescourt - 10.2011
|
|
||||||
-->
|
|
||||||
|
|
||||||
<project name="logisim-evolution" default="compile" basedir="."
|
|
||||||
xmlns:fx="javafx:com.sun.javafx.tools.ant">
|
|
||||||
|
|
||||||
<property name="app.name" value="Logisim-evolution"/>
|
|
||||||
<property name="app.version" value="2.14.7"/>
|
|
||||||
|
|
||||||
<target name="cleanall" depends="clean">
|
|
||||||
<delete dir="bin/com/bfh/"/>
|
|
||||||
<delete dir="bin/com/cburch/"/>
|
|
||||||
<delete dir="bin/com/hepia/"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="clean">
|
|
||||||
<delete file="logisim-evolution.jar"/>
|
|
||||||
<delete file="logisim-evolution_src.jar"/>
|
|
||||||
<delete file="package/logisim-evolution.jar"/>
|
|
||||||
<delete file="package/${app.name}.jnlp"/>
|
|
||||||
<delete file="package/${app.name}_browser.jnlp"/>
|
|
||||||
<delete file="package/${app.name}.html"/>
|
|
||||||
<delete dir="package/bundles"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="compile" depends="clean">
|
|
||||||
<mkdir dir="bin"/>
|
|
||||||
<javac srcdir="src" includeantruntime="false" destdir="bin" source="1.7" target="1.7" classpath="libs/colorpicker.jar:libs/fontchooser.jar:libs/jh.jar:libs/MRJAdapter.jar:libs/nimrodlf.jar:libs/rsyntaxtextarea.jar:libs/logback-classic-1.1.2.jar:libs/logback-core-1.1.2.jar:libs/slf4j-api-1.7.8.jar:libs/junit-4.12.jar:libs/hamcrest-core-1.3.jar" />
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="jar" depends="compile">
|
|
||||||
<jar destfile="logisim-evolution.jar">
|
|
||||||
<fileset dir="bin" excludes="resources/ libs/ javax/ doc/ boards_model/"/>
|
|
||||||
<fileset dir="." includes="doc/ resources/" excludes="doc/**/html/guide/analyze/" />
|
|
||||||
<zipgroupfileset dir="libs" includes="*.jar"/>
|
|
||||||
<manifest>
|
|
||||||
<attribute name="Main-Class" value="com.cburch.logisim.Main"/>
|
|
||||||
</manifest>
|
|
||||||
</jar>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="jarsrc" depends="jar">
|
|
||||||
<jar destfile="Logisim_src.jar">
|
|
||||||
<fileset dir="bin" />
|
|
||||||
<fileset dir="." includes="doc/ src/ build.xml publi/" />
|
|
||||||
<zipgroupfileset dir="libs" includes="*.jar"/>
|
|
||||||
<manifest>
|
|
||||||
<attribute name="Main-Class" value="com.cburch.logisim.Main"/>
|
|
||||||
</manifest>
|
|
||||||
</jar>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="jar_all" depends="compile">
|
|
||||||
<patch patchfile="main.patch" originalfile="src/com/cburch/logisim/Main.java"/>
|
|
||||||
<jar destfile="logisim-evolution.jar">
|
|
||||||
<fileset dir="bin" excludes="resources/ libs/ javax/ doc/ boards_model/"/>
|
|
||||||
<fileset dir="." includes="doc/ resources/" />
|
|
||||||
<zipgroupfileset dir="libs" includes="*.jar"/>
|
|
||||||
<manifest>
|
|
||||||
<attribute name="Main-Class" value="com.cburch.logisim.Main"/>
|
|
||||||
</manifest>
|
|
||||||
</jar>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
|
|
||||||
<target name="run" depends="jar">
|
|
||||||
<java jar="logisim-evolution.jar" fork="true"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="run_all" depends="jar">
|
|
||||||
<java jar="logisim-evolution.jar" fork="true"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<!-- Task package will fail on macOS High Sierra while generating a DMG
|
|
||||||
due to bug JDK-8190758. Use task package_macos instead to generate
|
|
||||||
an app bundle. -->
|
|
||||||
<target name="package" depends="jar">
|
|
||||||
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml"
|
|
||||||
uri="javafx:com.sun.javafx.tools.ant"
|
|
||||||
classpath=".:${java.home}/lib/ant-javafx.jar"/>
|
|
||||||
<fx:deploy width="600" height="400"
|
|
||||||
embeddedWidth="100%" embeddedHeight="100%"
|
|
||||||
outdir="${basedir}/package"
|
|
||||||
outfile="${app.name}"
|
|
||||||
nativeBundles="all"
|
|
||||||
signBundle="false"
|
|
||||||
verbose="true">
|
|
||||||
|
|
||||||
<fx:application name="${app.name}"
|
|
||||||
mainClass="com.cburch.logisim.Main"
|
|
||||||
version="${app.version}"
|
|
||||||
toolkit="swing"
|
|
||||||
/>
|
|
||||||
<!-- Package only application and dependencies but not the JRE -->
|
|
||||||
<!-- Unfortunately, removed in JDK 9. No workaround known yet. -->
|
|
||||||
<!-- <fx:platform basedir=""/> -->
|
|
||||||
|
|
||||||
<fx:resources>
|
|
||||||
<fx:fileset dir="." includes="logisim-evolution.jar"/>
|
|
||||||
</fx:resources>
|
|
||||||
|
|
||||||
<fx:info title="${app.name}"
|
|
||||||
vendor="${app.name} development team"
|
|
||||||
description="${app.name} for design and simulation of digital logic circuits"
|
|
||||||
category="Engineering"
|
|
||||||
copyright="Copyright (C) 2001--2018 Carl Burch, BFH, HEIG-VD, HEPIA, et al."
|
|
||||||
license="GNU GENERAL PUBLIC LICENSE, version 3"
|
|
||||||
>
|
|
||||||
<fx:association extension="circ" mimetype="application-prs.cburch.logisim" description="${app.name} circuit file"/>
|
|
||||||
</fx:info>
|
|
||||||
<fx:bundleArgument arg="email" value="roberto.rigamonti@heig-vd.ch"/>
|
|
||||||
<fx:bundleArgument arg="linux.bundleName" value="logisim-evolution"/>
|
|
||||||
<!-- See https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8 for list of AppStore categories -->
|
|
||||||
<fx:bundleArgument arg="mac.category" value="public.app-category.education"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleName" value="Logisim"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleIdentifier" value="com.cburch.logisim"/>
|
|
||||||
<fx:bundleArgument arg="win.menuGroup" value="Engineering"/>
|
|
||||||
<!-- <fx:bundleArgument arg="signBundle" value="false"/> -->
|
|
||||||
<fx:bundleArgument arg="dropinResourcesRoot" value="${basedir}"/>
|
|
||||||
|
|
||||||
<fx:preferences install="true"
|
|
||||||
installDirChooser="true"
|
|
||||||
menu="true"/>
|
|
||||||
</fx:deploy>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<!-- DMG generation is broken on macOS High Sierra, cf. to
|
|
||||||
https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8190758 for
|
|
||||||
details. Problem is only fixed in JDK 8u162 and the upcoming JDK 10.
|
|
||||||
There is no fix for JDK 9. This task package_macos works around the
|
|
||||||
problem by only generating a pkg installer. -->
|
|
||||||
<target name="package_macos" depends="jar">
|
|
||||||
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml"
|
|
||||||
uri="javafx:com.sun.javafx.tools.ant"
|
|
||||||
classpath=".:${java.home}/lib/ant-javafx.jar"/>
|
|
||||||
<fx:deploy width="600" height="400"
|
|
||||||
embeddedWidth="100%" embeddedHeight="100%"
|
|
||||||
outdir="${basedir}/package"
|
|
||||||
outfile="${app.name}"
|
|
||||||
nativeBundles="pkg"
|
|
||||||
signBundle="false"
|
|
||||||
verbose="true">
|
|
||||||
|
|
||||||
<fx:application name="${app.name}"
|
|
||||||
mainClass="com.cburch.logisim.Main"
|
|
||||||
version="${app.version}"
|
|
||||||
toolkit="swing"
|
|
||||||
/>
|
|
||||||
<!-- Package only application and dependencies but not the JRE -->
|
|
||||||
<!-- Unfortunately, removed in JDK 9. No workaround known yet. -->
|
|
||||||
<!-- <fx:platform basedir=""/> -->
|
|
||||||
|
|
||||||
<fx:resources>
|
|
||||||
<fx:fileset dir="." includes="logisim-evolution.jar"/>
|
|
||||||
</fx:resources>
|
|
||||||
|
|
||||||
<fx:info title="${app.name}"
|
|
||||||
vendor="${app.name} development team"
|
|
||||||
description="${app.name} for design and simulation of digital logic circuits"
|
|
||||||
category="Engineering"
|
|
||||||
copyright="Copyright (C) 2001--2018 Carl Burch, BFH, HEIG-VD, HEPIA, et al."
|
|
||||||
license="GNU GENERAL PUBLIC LICENSE, version 3"
|
|
||||||
>
|
|
||||||
<fx:association extension="circ" mimetype="application-prs.cburch.logisim" description="${app.name} circuit file"/>
|
|
||||||
</fx:info>
|
|
||||||
<fx:bundleArgument arg="email" value="roberto.rigamonti@heig-vd.ch"/>
|
|
||||||
<fx:bundleArgument arg="linux.bundleName" value="logisim-evolution"/>
|
|
||||||
<!-- See https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8 for list of AppStore categories -->
|
|
||||||
<fx:bundleArgument arg="mac.category" value="public.app-category.education"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleName" value="Logisim"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleIdentifier" value="com.cburch.logisim"/>
|
|
||||||
<fx:bundleArgument arg="win.menuGroup" value="Engineering"/>
|
|
||||||
<!-- <fx:bundleArgument arg="signBundle" value="false"/> -->
|
|
||||||
<fx:bundleArgument arg="dropinResourcesRoot" value="${basedir}"/>
|
|
||||||
|
|
||||||
<fx:preferences install="true"
|
|
||||||
installDirChooser="true"
|
|
||||||
menu="true"/>
|
|
||||||
</fx:deploy>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
</project>
|
|
|
@ -1,39 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Arithmetic Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Arithmetikbibliothek</h1>
|
|
||||||
|
|
||||||
<p>The Arithmetic library includes combinational
|
|
||||||
components that perform arithmetic operations on unsigned and
|
|
||||||
two's-complement values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="adder.html"><img border="0" src="../../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="adder.html">Addierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="subtractor.html"><img border="0" src="../../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="subtractor.html">Subtrahierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="multiplier.html"><img border="0" src="../../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="multiplier.html">Multiplizierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="divider.html"><img border="0" src="../../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="divider.html">Teiler</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="negator.html"><img border="0" src="../../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="comparator.html"><img border="0" src="../../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="comparator.html">Komparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shifter.html"><img border="0" src="../../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shifter.html">Bitschieber</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitadder.html"><img border="0" src="../../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitadder.html">Bit-Addierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitfinder.html"><img border="0" src="../../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitfinder.html">Bit-Finder</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Zurück zur <em>Bibliotheksreferenz</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,53 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Base Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Basisbibliothek</h1>
|
|
||||||
|
|
||||||
<p>The Base library includes general-purpose
|
|
||||||
tools, as well as components whose behavior in a circuit is
|
|
||||||
distinguished from other components (that is, they are treated
|
|
||||||
unusually by Logisim's propagation engine).</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="poke.html"><img border="0" src="../../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="poke.html">Schaltwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="edit.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="edit.html">Bearbeitungswerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="select.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="select.html">Auswahlwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring.html"><img border="0" src="../../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring.html">Verbindungswerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="text.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="text.html">Textwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="menu.html"><img border="0" src="../../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="menu.html">Menüwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="splitter.html"><img border="0" src="../../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="splitter.html">Verteiler</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="probe.html"><img border="0" src="../../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="probe.html">Testpunkt</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tunnel.html"><img border="0" src="../../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pull.html"><img border="0" src="../../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="clock.html"><img border="0" src="../../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="clock.html">Takt</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="extender.html"><img border="0" src="../../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="extender.html">Bit-Erweiterung</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="label.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="label.html">Label</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Zurück zur <em>Bibliotheksreferenz</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,52 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Gates Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Gatterbibliothek</h1>
|
|
||||||
|
|
||||||
<p>The Gates library includes a variety of simple
|
|
||||||
components, all of which have a single output whose value is
|
|
||||||
dictated entirely by the current inputs.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="constant.html"><img border="0" src="../../../../icons/constant.gif" width="16" height="16">
|
|
||||||
</a></td><td><a href="constant.html">Konstante</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="not.html"><img border="0" src="../../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="not.html">Inverter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="buffer.html"><img border="0" src="../../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="buffer.html">Puffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="basic.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="basic.html">AND/OR/NAND/NOR-Gatter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="controlled.html">Tristate-Puffer/Inverter</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Zurück zur <em>Bibliotheksreferenz</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,169 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Bibliotheksreferenz</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1><em>Bibliotheksreferenz</em></h1>
|
|
||||||
|
|
||||||
<p>A Logisim library holds a set of <em>tools</em> that allow you to
|
|
||||||
interact with a circuit via clicking and dragging the mouse in the
|
|
||||||
canvas area. Most often, a tool is intended for adding components of a
|
|
||||||
particular type into a circuit; but some of the most important tools,
|
|
||||||
such as the Poke Tool and the Select Tool, allow you to interact with
|
|
||||||
components in other ways.</p>
|
|
||||||
|
|
||||||
<p>All of the tools included in Logisim's built-in libraries are
|
|
||||||
documented in this reference material.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><font size="+1"><b><a href="base/index.html">Basisbibliothek</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/poke.html"><img border="0" src="../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/poke.html">Schaltwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/edit.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/edit.html">Bearbeitungswerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/select.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/select.html">Auswahlwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/wiring.html"><img border="0" src="../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/wiring.html">Verbindungswerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/text.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/text.html">Textwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/menu.html"><img border="0" src="../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/menu.html">Menüwerkzeug</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/splitter.html"><img border="0" src="../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/splitter.html">Verteiler</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/tunnel.html"><img border="0" src="../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/pull.html"><img border="0" src="../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/probe.html"><img border="0" src="../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/probe.html">Testpunkt</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/clock.html"><img border="0" src="../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/clock.html">Takt</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/extender.html"><img border="0" src="../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/extender.html">Bit-Erweiterung</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/label.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/label.html">Label</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="gates/index.html">Gatterbibliothek</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/constant.html"><img border="0" src="../../../icons/constant.gif" width="16" height="16">
|
|
||||||
</a></td><td><a href="gates/constant.html">Konstante</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/not.html"><img border="0" src="../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/not.html">Inverter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/buffer.html"><img border="0" src="../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/buffer.html">Puffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/basic.html" style="text-decoration: none"><img border="0" src="../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/basic.html">AND/OR/NAND/NOR-Gatter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/controlled.html">Tristate-Puffer/Inverter</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="plexers/index.html">Auswahlschaltungsbibliothek</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/mux.html"><img border="0" src="../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/demux.html"><img border="0" src="../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/decoder.html"><img border="0" src="../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/decoder.html">Dekoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/priencod.html"><img border="0" src="../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/priencod.html">Prioritätsenkoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/selector.html"><img border="0" src="../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/selector.html">Bit-Wähler</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="arith/index.html">Arithmetikbibliothek</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/adder.html"><img border="0" src="../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/adder.html">Addierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/subtractor.html"><img border="0" src="../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/subtractor.html">Subtrahierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/multiplier.html"><img border="0" src="../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/multiplier.html">Multiplizierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/divider.html"><img border="0" src="../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/divider.html">Teiler</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/negator.html"><img border="0" src="../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/comparator.html"><img border="0" src="../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/comparator.html">Komparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/shifter.html"><img border="0" src="../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/shifter.html">Bitschieber</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitadder.html"><img border="0" src="../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitadder.html">Bit-Addierer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitfinder.html"><img border="0" src="../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitfinder.html">Bit-Finder</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="mem/index.html">Speicherbibliothek</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/register.html"><img border="0" src="../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/counter.html"><img border="0" src="../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/counter.html">Zähler</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/shiftreg.html"><img border="0" src="../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/shiftreg.html">Schieberegister</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/random.html"><img border="0" src="../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/random.html">Zufallsgenerator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/ram.html"><img border="0" src="../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/rom.html"><img border="0" src="../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/rom.html">ROM</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="io/index.html">Eingabe/Ausgabe-Bibliothek</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/button.html"><img border="0" src="../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/button.html">Taster</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/joystick.html"><img border="0" src="../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/keyboard.html"><img border="0" src="../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/keyboard.html">Tastatur</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/led.html"><img border="0" src="../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/7seg.html"><img border="0" src="../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/7seg.html">7-Segmentanzeige</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/hexdig.html"><img border="0" src="../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/hexdig.html">Hexadezimale Anzeige</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/dotmat.html"><img border="0" src="../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/dotmat.html">LED-Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/tty.html"><img border="0" src="../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/tty.html">Terminal</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="legacy/index.html">Altlasten</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="legacy/flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/jkFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="legacy/flipflops.html">Logisim 1.0 D/J-K Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="legacy/register.html"><img border="0" src="../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="legacy/register.html">Logisim 1.0 8-Bit Register</a></td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,37 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Input/Output Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Eingabe/Ausgabe-Bibliothek</h1>
|
|
||||||
|
|
||||||
<p>The Input/Output library includes components that are meant to
|
|
||||||
correspond to typical components found in electronics for interfacing
|
|
||||||
with a user.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="button.html"><img border="0" src="../../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="button.html">Taster</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="joystick.html"><img border="0" src="../../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="keyboard.html"><img border="0" src="../../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="keyboard.html">Tastatur</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="led.html"><img border="0" src="../../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="7seg.html"><img border="0" src="../../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="7seg.html">7-Segmentanzeige</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="hexdig.html"><img border="0" src="../../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="hexdig.html">Hexadezimale Anzeige</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="dotmat.html"><img border="0" src="../../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="dotmat.html">LED-Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tty.html"><img border="0" src="../../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tty.html">Terminal</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Zurück zur <em>Bibliotheksreferenz</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,37 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Memory Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Speicherbibliothek</h1>
|
|
||||||
|
|
||||||
<p>The Memory library includes components that remember information.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="register.html"><img border="0" src="../../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="counter.html"><img border="0" src="../../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="counter.html">Zähler</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shiftreg.html"><img border="0" src="../../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shiftreg.html">Schieberegister</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="random.html"><img border="0" src="../../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="random.html">Zufallsgenerator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="ram.html"><img border="0" src="../../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="rom.html"><img border="0" src="../../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="rom.html">ROM</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Zurück zur <em>Bibliotheksreferenz</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,38 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Arithmetic Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Arithmetic library</h1>
|
|
||||||
|
|
||||||
<p>The Arithmetic library includes combinational
|
|
||||||
components that perform arithmetic operations on unsigned and
|
|
||||||
two's-complement values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="adder.html"><img border="0" src="../../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="subtractor.html"><img border="0" src="../../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="multiplier.html"><img border="0" src="../../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="divider.html"><img border="0" src="../../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="negator.html"><img border="0" src="../../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="comparator.html"><img border="0" src="../../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shifter.html"><img border="0" src="../../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitadder.html"><img border="0" src="../../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitfinder.html"><img border="0" src="../../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,32 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Base Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Base library</h1>
|
|
||||||
|
|
||||||
<p>The Base library includes general-purpose tools.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="poke.html"><img border="0" src="../../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="edit.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="select.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring.html"><img border="0" src="../../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="text.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="menu.html"><img border="0" src="../../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="label.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="label.html">Label</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,49 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Gates Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Gates library</h1>
|
|
||||||
|
|
||||||
<p>The Gates library includes a variety of simple
|
|
||||||
components, all of which have a single output whose value is
|
|
||||||
dictated entirely by the current inputs.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="not.html"><img border="0" src="../../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="buffer.html"><img border="0" src="../../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="basic.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,185 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Library Reference</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1><em>Library Reference</em></h1>
|
|
||||||
|
|
||||||
<p>A Logisim library holds a set of <em>tools</em> that allow you to
|
|
||||||
interact with a circuit via clicking and dragging the mouse in the
|
|
||||||
canvas area. Most often, a tool is intended for adding components of a
|
|
||||||
particular type into a circuit; but some of the most important tools,
|
|
||||||
such as the Poke Tool and the Select Tool, allow you to interact with
|
|
||||||
components in other ways.</p>
|
|
||||||
|
|
||||||
<p>All of the tools included in Logisim's built-in libraries are
|
|
||||||
documented in this reference material.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><font size="+1"><b><a href="wiring/index.html">Wiring library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/splitter.html"><img border="0" src="../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/probe.html"><img border="0" src="../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/tunnel.html"><img border="0" src="../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pull.html"><img border="0" src="../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/clock.html"><img border="0" src="../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/constant.html"><img border="0" src="../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transmis.html"><img border="0" src="../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/extender.html"><img border="0" src="../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/extender.html">Bit Extender</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="gates/index.html">Gates library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/not.html"><img border="0" src="../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/buffer.html"><img border="0" src="../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/basic.html" style="text-decoration: none"><img border="0" src="../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="plexers/index.html">Plexers library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/mux.html"><img border="0" src="../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/demux.html"><img border="0" src="../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/decoder.html"><img border="0" src="../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/decoder.html">Decoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/priencod.html"><img border="0" src="../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/priencod.html">Priority Encoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/selector.html"><img border="0" src="../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/selector.html">Bit Selector</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="arith/index.html">Arithmetic library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/adder.html"><img border="0" src="../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/subtractor.html"><img border="0" src="../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/multiplier.html"><img border="0" src="../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/divider.html"><img border="0" src="../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/negator.html"><img border="0" src="../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/comparator.html"><img border="0" src="../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/shifter.html"><img border="0" src="../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitadder.html"><img border="0" src="../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitfinder.html"><img border="0" src="../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="mem/index.html">Memory library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/register.html"><img border="0" src="../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/counter.html"><img border="0" src="../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/shiftreg.html"><img border="0" src="../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/random.html"><img border="0" src="../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/ram.html"><img border="0" src="../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/rom.html"><img border="0" src="../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/rom.html">ROM</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="io/index.html">Input/Output library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/button.html"><img border="0" src="../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/joystick.html"><img border="0" src="../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/keyboard.html"><img border="0" src="../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/led.html"><img border="0" src="../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/7seg.html"><img border="0" src="../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/hexdig.html"><img border="0" src="../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/dotmat.html"><img border="0" src="../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/tty.html"><img border="0" src="../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/tty.html">TTY</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="hdl/index.html">HDL-IP library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="hdl/vhdlentity.html"><img border="0" src="../../../icons/vhdl.gif"></a></td>
|
|
||||||
<td><a href="hdl/vhdlentity.html">VHDL Entity</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="base/index.html">Base library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/poke.html"><img border="0" src="../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/edit.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/select.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/wiring.html"><img border="0" src="../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/text.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/menu.html"><img border="0" src="../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/label.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/label.html">Label</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="tcl/index.html">TCL library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/reds_console.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/reds_console.html">REDS console</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/generic.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/generic.html">TCL generic</a></td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Input/Output Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Input/Output library</h1>
|
|
||||||
|
|
||||||
<p>The Input/Output library includes components that are meant to
|
|
||||||
correspond to typical components found in electronics for interfacing
|
|
||||||
with a user.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="button.html"><img border="0" src="../../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="joystick.html"><img border="0" src="../../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="keyboard.html"><img border="0" src="../../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="led.html"><img border="0" src="../../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="7seg.html"><img border="0" src="../../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="hexdig.html"><img border="0" src="../../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="dotmat.html"><img border="0" src="../../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tty.html"><img border="0" src="../../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tty.html">TTY</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Memory Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Memory library</h1>
|
|
||||||
|
|
||||||
<p>The Memory library includes components that remember information.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="register.html"><img border="0" src="../../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="counter.html"><img border="0" src="../../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shiftreg.html"><img border="0" src="../../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="random.html"><img border="0" src="../../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="ram.html"><img border="0" src="../../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="rom.html"><img border="0" src="../../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="rom.html">ROM</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,30 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Plexers Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Plexers library</h1>
|
|
||||||
|
|
||||||
<p>The Plexers library includes control components.
|
|
||||||
Like the components of the Gates library, all are combinational,
|
|
||||||
but their purpose is generally for routing values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="mux.html"><img border="0" src="../../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="demux.html"><img border="0" src="../../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="decoder.html"><img border="0" src="../../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="decoder.html">Decoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="priencod.html"><img border="0" src="../../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="priencod.html">Priority Encoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="selector.html"><img border="0" src="../../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="selector.html">Bit Selector</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,48 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Wiring Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Wiring library</h1>
|
|
||||||
|
|
||||||
<p>The Wiring library includes components that relate primarily to wires and
|
|
||||||
to basic electrical concepts.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="splitter.html"><img border="0" src="../../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="probe.html"><img border="0" src="../../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tunnel.html"><img border="0" src="../../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pull.html"><img border="0" src="../../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="clock.html"><img border="0" src="../../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="constant.html"><img border="0" src="../../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transmis.html"><img border="0" src="../../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="extender.html"><img border="0" src="../../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="extender.html">Bit Extender</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,38 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Arithmetic Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Arithmetic library</h1>
|
|
||||||
|
|
||||||
<p>The Arithmetic library includes combinational
|
|
||||||
components that perform arithmetic operations on unsigned and
|
|
||||||
two's-complement values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="adder.html"><img border="0" src="../../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="subtractor.html"><img border="0" src="../../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="multiplier.html"><img border="0" src="../../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="divider.html"><img border="0" src="../../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="negator.html"><img border="0" src="../../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="comparator.html"><img border="0" src="../../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shifter.html"><img border="0" src="../../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitadder.html"><img border="0" src="../../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitfinder.html"><img border="0" src="../../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,32 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Base Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Base library</h1>
|
|
||||||
|
|
||||||
<p>The Base library includes general-purpose tools.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="poke.html"><img border="0" src="../../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="edit.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="select.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring.html"><img border="0" src="../../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="text.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="menu.html"><img border="0" src="../../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="label.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="label.html">Label</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,49 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Gates Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Gates library</h1>
|
|
||||||
|
|
||||||
<p>The Gates library includes a variety of simple
|
|
||||||
components, all of which have a single output whose value is
|
|
||||||
dictated entirely by the current inputs.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="not.html"><img border="0" src="../../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="buffer.html"><img border="0" src="../../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="basic.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,185 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Library Reference</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1><em>Library Reference</em></h1>
|
|
||||||
|
|
||||||
<p>A Logisim library holds a set of <em>tools</em> that allow you to
|
|
||||||
interact with a circuit via clicking and dragging the mouse in the
|
|
||||||
canvas area. Most often, a tool is intended for adding components of a
|
|
||||||
particular type into a circuit; but some of the most important tools,
|
|
||||||
such as the Poke Tool and the Select Tool, allow you to interact with
|
|
||||||
components in other ways.</p>
|
|
||||||
|
|
||||||
<p>All of the tools included in Logisim's built-in libraries are
|
|
||||||
documented in this reference material.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><font size="+1"><b><a href="wiring/index.html">Wiring library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/splitter.html"><img border="0" src="../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/probe.html"><img border="0" src="../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/tunnel.html"><img border="0" src="../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pull.html"><img border="0" src="../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/clock.html"><img border="0" src="../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/constant.html"><img border="0" src="../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transmis.html"><img border="0" src="../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/extender.html"><img border="0" src="../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/extender.html">Bit Extender</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="gates/index.html">Gates library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/not.html"><img border="0" src="../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/buffer.html"><img border="0" src="../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/basic.html" style="text-decoration: none"><img border="0" src="../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="plexers/index.html">Plexers library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/mux.html"><img border="0" src="../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/demux.html"><img border="0" src="../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/decoder.html"><img border="0" src="../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/decoder.html">Decoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/priencod.html"><img border="0" src="../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/priencod.html">Priority Encoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/selector.html"><img border="0" src="../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/selector.html">Bit Selector</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="arith/index.html">Arithmetic library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/adder.html"><img border="0" src="../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/subtractor.html"><img border="0" src="../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/multiplier.html"><img border="0" src="../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/divider.html"><img border="0" src="../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/negator.html"><img border="0" src="../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/comparator.html"><img border="0" src="../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/shifter.html"><img border="0" src="../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitadder.html"><img border="0" src="../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitfinder.html"><img border="0" src="../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="mem/index.html">Memory library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/register.html"><img border="0" src="../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/counter.html"><img border="0" src="../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/shiftreg.html"><img border="0" src="../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/random.html"><img border="0" src="../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/ram.html"><img border="0" src="../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/rom.html"><img border="0" src="../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/rom.html">ROM</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="io/index.html">Input/Output library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/button.html"><img border="0" src="../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/joystick.html"><img border="0" src="../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/keyboard.html"><img border="0" src="../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/led.html"><img border="0" src="../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/7seg.html"><img border="0" src="../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/hexdig.html"><img border="0" src="../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/dotmat.html"><img border="0" src="../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/tty.html"><img border="0" src="../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/tty.html">TTY</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="hdl/index.html">HDL-IP library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="hdl/vhdlentity.html"><img border="0" src="../../../icons/vhdl.gif"></a></td>
|
|
||||||
<td><a href="hdl/vhdlentity.html">VHDL Entity</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="base/index.html">Base library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/poke.html"><img border="0" src="../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/edit.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/select.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/wiring.html"><img border="0" src="../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/text.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/menu.html"><img border="0" src="../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/label.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/label.html">Label</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="tcl/index.html">TCL library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/reds_console.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/reds_console.html">REDS console</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/generic.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/generic.html">TCL generic</a></td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Input/Output Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Input/Output library</h1>
|
|
||||||
|
|
||||||
<p>The Input/Output library includes components that are meant to
|
|
||||||
correspond to typical components found in electronics for interfacing
|
|
||||||
with a user.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="button.html"><img border="0" src="../../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="joystick.html"><img border="0" src="../../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="keyboard.html"><img border="0" src="../../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="led.html"><img border="0" src="../../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="7seg.html"><img border="0" src="../../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="hexdig.html"><img border="0" src="../../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="dotmat.html"><img border="0" src="../../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tty.html"><img border="0" src="../../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tty.html">TTY</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Memory Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Memory library</h1>
|
|
||||||
|
|
||||||
<p>The Memory library includes components that remember information.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="register.html"><img border="0" src="../../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="counter.html"><img border="0" src="../../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shiftreg.html"><img border="0" src="../../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="random.html"><img border="0" src="../../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="ram.html"><img border="0" src="../../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="rom.html"><img border="0" src="../../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="rom.html">ROM</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,30 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Plexers Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Plexers library</h1>
|
|
||||||
|
|
||||||
<p>The Plexers library includes control components.
|
|
||||||
Like the components of the Gates library, all are combinational,
|
|
||||||
but their purpose is generally for routing values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="mux.html"><img border="0" src="../../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="demux.html"><img border="0" src="../../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="decoder.html"><img border="0" src="../../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="decoder.html">Decoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="priencod.html"><img border="0" src="../../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="priencod.html">Priority Encoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="selector.html"><img border="0" src="../../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="selector.html">Bit Selector</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,48 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Wiring Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Wiring library</h1>
|
|
||||||
|
|
||||||
<p>The Wiring library includes components that relate primarily to wires and
|
|
||||||
to basic electrical concepts.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="splitter.html"><img border="0" src="../../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="probe.html"><img border="0" src="../../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tunnel.html"><img border="0" src="../../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pull.html"><img border="0" src="../../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="clock.html"><img border="0" src="../../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="constant.html"><img border="0" src="../../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transmis.html"><img border="0" src="../../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="extender.html"><img border="0" src="../../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="extender.html">Bit Extender</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,38 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Arithmetic Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Arithmetic library</h1>
|
|
||||||
|
|
||||||
<p>The Arithmetic library includes combinational
|
|
||||||
components that perform arithmetic operations on unsigned and
|
|
||||||
two's-complement values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="adder.html"><img border="0" src="../../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="subtractor.html"><img border="0" src="../../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="multiplier.html"><img border="0" src="../../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="divider.html"><img border="0" src="../../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="negator.html"><img border="0" src="../../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="comparator.html"><img border="0" src="../../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shifter.html"><img border="0" src="../../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitadder.html"><img border="0" src="../../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitfinder.html"><img border="0" src="../../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,32 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Base Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Base library</h1>
|
|
||||||
|
|
||||||
<p>The Base library includes general-purpose tools.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="poke.html"><img border="0" src="../../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="edit.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="select.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring.html"><img border="0" src="../../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="text.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="menu.html"><img border="0" src="../../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="label.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="label.html">Label</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,49 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Gates Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Gates library</h1>
|
|
||||||
|
|
||||||
<p>The Gates library includes a variety of simple
|
|
||||||
components, all of which have a single output whose value is
|
|
||||||
dictated entirely by the current inputs.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="not.html"><img border="0" src="../../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="buffer.html"><img border="0" src="../../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="basic.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,185 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Library Reference</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1><em>Library Reference</em></h1>
|
|
||||||
|
|
||||||
<p>A Logisim library holds a set of <em>tools</em> that allow you to
|
|
||||||
interact with a circuit via clicking and dragging the mouse in the
|
|
||||||
canvas area. Most often, a tool is intended for adding components of a
|
|
||||||
particular type into a circuit; but some of the most important tools,
|
|
||||||
such as the Poke Tool and the Select Tool, allow you to interact with
|
|
||||||
components in other ways.</p>
|
|
||||||
|
|
||||||
<p>All of the tools included in Logisim's built-in libraries are
|
|
||||||
documented in this reference material.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><font size="+1"><b><a href="wiring/index.html">Wiring library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/splitter.html"><img border="0" src="../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/probe.html"><img border="0" src="../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/tunnel.html"><img border="0" src="../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pull.html"><img border="0" src="../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/clock.html"><img border="0" src="../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/constant.html"><img border="0" src="../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transmis.html"><img border="0" src="../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/extender.html"><img border="0" src="../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/extender.html">Bit Extender</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="gates/index.html">Gates library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/not.html"><img border="0" src="../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/buffer.html"><img border="0" src="../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/basic.html" style="text-decoration: none"><img border="0" src="../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="plexers/index.html">Plexers library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/mux.html"><img border="0" src="../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/demux.html"><img border="0" src="../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/decoder.html"><img border="0" src="../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/decoder.html">Decoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/priencod.html"><img border="0" src="../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/priencod.html">Priority Encoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/selector.html"><img border="0" src="../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/selector.html">Bit Selector</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="arith/index.html">Arithmetic library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/adder.html"><img border="0" src="../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/subtractor.html"><img border="0" src="../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/multiplier.html"><img border="0" src="../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/divider.html"><img border="0" src="../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/negator.html"><img border="0" src="../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/comparator.html"><img border="0" src="../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/shifter.html"><img border="0" src="../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitadder.html"><img border="0" src="../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitfinder.html"><img border="0" src="../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="mem/index.html">Memory library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/register.html"><img border="0" src="../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/counter.html"><img border="0" src="../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/shiftreg.html"><img border="0" src="../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/random.html"><img border="0" src="../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/ram.html"><img border="0" src="../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/rom.html"><img border="0" src="../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/rom.html">ROM</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="io/index.html">Input/Output library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/button.html"><img border="0" src="../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/joystick.html"><img border="0" src="../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/keyboard.html"><img border="0" src="../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/led.html"><img border="0" src="../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/7seg.html"><img border="0" src="../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/hexdig.html"><img border="0" src="../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/dotmat.html"><img border="0" src="../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/tty.html"><img border="0" src="../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/tty.html">TTY</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="hdl/index.html">HDL-IP library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="hdl/vhdlentity.html"><img border="0" src="../../../icons/vhdl.gif"></a></td>
|
|
||||||
<td><a href="hdl/vhdlentity.html">VHDL Entity</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="base/index.html">Base library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/poke.html"><img border="0" src="../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/edit.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/select.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/wiring.html"><img border="0" src="../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/text.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/menu.html"><img border="0" src="../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/label.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/label.html">Label</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="tcl/index.html">TCL library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/reds_console.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/reds_console.html">REDS console</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/generic.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/generic.html">TCL generic</a></td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Input/Output Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Input/Output library</h1>
|
|
||||||
|
|
||||||
<p>The Input/Output library includes components that are meant to
|
|
||||||
correspond to typical components found in electronics for interfacing
|
|
||||||
with a user.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="button.html"><img border="0" src="../../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="joystick.html"><img border="0" src="../../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="keyboard.html"><img border="0" src="../../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="led.html"><img border="0" src="../../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="7seg.html"><img border="0" src="../../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="hexdig.html"><img border="0" src="../../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="dotmat.html"><img border="0" src="../../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tty.html"><img border="0" src="../../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tty.html">TTY</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Memory Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Memory library</h1>
|
|
||||||
|
|
||||||
<p>The Memory library includes components that remember information.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="register.html"><img border="0" src="../../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="counter.html"><img border="0" src="../../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shiftreg.html"><img border="0" src="../../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="random.html"><img border="0" src="../../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="ram.html"><img border="0" src="../../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="rom.html"><img border="0" src="../../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="rom.html">ROM</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,30 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Plexers Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Plexers library</h1>
|
|
||||||
|
|
||||||
<p>The Plexers library includes control components.
|
|
||||||
Like the components of the Gates library, all are combinational,
|
|
||||||
but their purpose is generally for routing values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="mux.html"><img border="0" src="../../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="demux.html"><img border="0" src="../../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="decoder.html"><img border="0" src="../../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="decoder.html">Decoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="priencod.html"><img border="0" src="../../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="priencod.html">Priority Encoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="selector.html"><img border="0" src="../../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="selector.html">Bit Selector</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,48 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Wiring Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Wiring library</h1>
|
|
||||||
|
|
||||||
<p>The Wiring library includes components that relate primarily to wires and
|
|
||||||
to basic electrical concepts.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="splitter.html"><img border="0" src="../../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="probe.html"><img border="0" src="../../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tunnel.html"><img border="0" src="../../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pull.html"><img border="0" src="../../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="clock.html"><img border="0" src="../../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="constant.html"><img border="0" src="../../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transmis.html"><img border="0" src="../../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="extender.html"><img border="0" src="../../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="extender.html">Bit Extender</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,38 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Arithmetic Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Arithmetic library</h1>
|
|
||||||
|
|
||||||
<p>The Arithmetic library includes combinational
|
|
||||||
components that perform arithmetic operations on unsigned and
|
|
||||||
two's-complement values.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="adder.html"><img border="0" src="../../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="subtractor.html"><img border="0" src="../../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="multiplier.html"><img border="0" src="../../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="divider.html"><img border="0" src="../../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="negator.html"><img border="0" src="../../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="comparator.html"><img border="0" src="../../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shifter.html"><img border="0" src="../../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitadder.html"><img border="0" src="../../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitfinder.html"><img border="0" src="../../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,32 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Base Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Base library</h1>
|
|
||||||
|
|
||||||
<p>The Base library includes general-purpose tools.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="poke.html"><img border="0" src="../../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="edit.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="select.html"><img border="0" src="../../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring.html"><img border="0" src="../../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="text.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="menu.html"><img border="0" src="../../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="label.html"><img border="0" src="../../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="label.html">Label</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,49 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Gates Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Gates library</h1>
|
|
||||||
|
|
||||||
<p>The Gates library includes a variety of simple
|
|
||||||
components, all of which have a single output whose value is
|
|
||||||
dictated entirely by the current inputs.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="not.html"><img border="0" src="../../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="buffer.html"><img border="0" src="../../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="basic.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,185 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Library Reference</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1><em>Library Reference</em></h1>
|
|
||||||
|
|
||||||
<p>A Logisim library holds a set of <em>tools</em> that allow you to
|
|
||||||
interact with a circuit via clicking and dragging the mouse in the
|
|
||||||
canvas area. Most often, a tool is intended for adding components of a
|
|
||||||
particular type into a circuit; but some of the most important tools,
|
|
||||||
such as the Poke Tool and the Select Tool, allow you to interact with
|
|
||||||
components in other ways.</p>
|
|
||||||
|
|
||||||
<p>All of the tools included in Logisim's built-in libraries are
|
|
||||||
documented in this reference material.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><font size="+1"><b><a href="wiring/index.html">Wiring library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/splitter.html"><img border="0" src="../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/probe.html"><img border="0" src="../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/tunnel.html"><img border="0" src="../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pull.html"><img border="0" src="../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/clock.html"><img border="0" src="../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/constant.html"><img border="0" src="../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transmis.html"><img border="0" src="../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="wiring/transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/extender.html"><img border="0" src="../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/extender.html">Bit Extender</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="gates/index.html">Gates library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/not.html"><img border="0" src="../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/not.html">NOT Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/buffer.html"><img border="0" src="../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/buffer.html">Buffer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/basic.html" style="text-decoration: none"><img border="0" src="../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/basic.html">AND/OR/NAND/NOR Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/xor.html">XOR/XNOR/Odd Parity/Even Parity Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/controlled.html">Controlled Buffer/Inverter</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="plexers/index.html">Plexers library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/mux.html"><img border="0" src="../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/mux.html">Multiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/demux.html"><img border="0" src="../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/demux.html">Demultiplexer</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/decoder.html"><img border="0" src="../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/decoder.html">Decoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/priencod.html"><img border="0" src="../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/priencod.html">Priority Encoder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/selector.html"><img border="0" src="../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/selector.html">Bit Selector</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="arith/index.html">Arithmetic library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/adder.html"><img border="0" src="../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/adder.html">Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/subtractor.html"><img border="0" src="../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/subtractor.html">Subtractor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/multiplier.html"><img border="0" src="../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/multiplier.html">Multiplier</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/divider.html"><img border="0" src="../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/divider.html">Divider</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/negator.html"><img border="0" src="../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/negator.html">Negator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/comparator.html"><img border="0" src="../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/comparator.html">Comparator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/shifter.html"><img border="0" src="../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/shifter.html">Shifter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitadder.html"><img border="0" src="../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitadder.html">Bit Adder</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitfinder.html"><img border="0" src="../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitfinder.html">Bit Finder</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="mem/index.html">Memory library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/register.html"><img border="0" src="../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/counter.html"><img border="0" src="../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/shiftreg.html"><img border="0" src="../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/random.html"><img border="0" src="../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/ram.html"><img border="0" src="../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/rom.html"><img border="0" src="../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/rom.html">ROM</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="io/index.html">Input/Output library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/button.html"><img border="0" src="../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/joystick.html"><img border="0" src="../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/keyboard.html"><img border="0" src="../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/led.html"><img border="0" src="../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/7seg.html"><img border="0" src="../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/hexdig.html"><img border="0" src="../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/dotmat.html"><img border="0" src="../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/tty.html"><img border="0" src="../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/tty.html">TTY</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="hdl/index.html">HDL-IP library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="hdl/vhdlentity.html"><img border="0" src="../../../icons/vhdl.gif"></a></td>
|
|
||||||
<td><a href="hdl/vhdlentity.html">VHDL Entity</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="base/index.html">Base library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/poke.html"><img border="0" src="../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/poke.html">Poke Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/edit.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/edit.html">Edit Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/select.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></td>
|
|
||||||
<td><a href="base/select.html">Select Tool</td></tr>
|
|
||||||
<tr><td align="right"><a href="base/wiring.html"><img border="0" src="../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/wiring.html">Wiring Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/text.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/text.html">Text Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/menu.html"><img border="0" src="../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/menu.html">Menu Tool</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/label.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/label.html">Label</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="tcl/index.html">TCL library</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/reds_console.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/reds_console.html">REDS console</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tcl/generic.html"><img border="0" src="../../../icons/tcl.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tcl/generic.html">TCL generic</a></td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Input/Output Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Input/Output library</h1>
|
|
||||||
|
|
||||||
<p>The Input/Output library includes components that are meant to
|
|
||||||
correspond to typical components found in electronics for interfacing
|
|
||||||
with a user.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="button.html"><img border="0" src="../../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="button.html">Button</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="joystick.html"><img border="0" src="../../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="joystick.html">Joystick</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="keyboard.html"><img border="0" src="../../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="keyboard.html">Keyboard</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="led.html"><img border="0" src="../../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="led.html">LED</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="7seg.html"><img border="0" src="../../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="7seg.html">7-Segment Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="hexdig.html"><img border="0" src="../../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="hexdig.html">Hex Digit Display</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="dotmat.html"><img border="0" src="../../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="dotmat.html">LED Matrix</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tty.html"><img border="0" src="../../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tty.html">TTY</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,36 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Memory Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Memory library</h1>
|
|
||||||
|
|
||||||
<p>The Memory library includes components that remember information.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="flipflops.html">D/T/J-K/S-R Flip-Flop</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="register.html"><img border="0" src="../../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="register.html">Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="counter.html"><img border="0" src="../../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="counter.html">Counter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shiftreg.html"><img border="0" src="../../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shiftreg.html">Shift Register</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="random.html"><img border="0" src="../../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="random.html">Random</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="ram.html"><img border="0" src="../../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="ram.html">RAM</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="rom.html"><img border="0" src="../../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="rom.html">ROM</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,48 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Wiring Library</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Wiring library</h1>
|
|
||||||
|
|
||||||
<p>The Wiring library includes components that relate primarily to wires and
|
|
||||||
to basic electrical concepts.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="splitter.html"><img border="0" src="../../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="splitter.html">Splitter</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pin.html">Pin</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="probe.html"><img border="0" src="../../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="probe.html">Probe</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tunnel.html"><img border="0" src="../../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tunnel.html">Tunnel</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pull.html"><img border="0" src="../../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pull.html">Pull Resistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="clock.html"><img border="0" src="../../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="clock.html">Clock</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="constant.html"><img border="0" src="../../../../icons/constant.gif" width="16" height="16">
|
|
||||||
<td><a href="constant.html">Constant</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="const01.html">Power/Ground</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="transist.html">Transistor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transmis.html"><img border="0" src="../../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
<td><a href="transmis.html">Transmission Gate</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="extender.html"><img border="0" src="../../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="extender.html">Bit Extender</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,40 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Biblioteca aritmética</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Biblioteca aritmética</h1>
|
|
||||||
|
|
||||||
<p> A biblioteca inclui componentes combinacionais capazes de
|
|
||||||
executar operações aritméticas com valores inteiros sem sinal e
|
|
||||||
também com valores em complemento de dois.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="adder.html"><img border="0" src="../../../../icons/adder.gif"></a></td>
|
|
||||||
<td><a href="adder.html">Somador</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="subtractor.html"><img border="0" src="../../../../icons/subtractor.gif"></a></td>
|
|
||||||
<td><a href="subtractor.html">Subtrator</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="multiplier.html"><img border="0" src="../../../../icons/multiplier.gif"></a></td>
|
|
||||||
<td><a href="multiplier.html">Multiplicador</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="divider.html"><img border="0" src="../../../../icons/divider.gif"></a></td>
|
|
||||||
<td><a href="divider.html">Divisor</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="negator.html"><img border="0" src="../../../../icons/negator.gif"></a></td>
|
|
||||||
<td><a href="negator.html">Negador</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="comparator.html"><img border="0" src="../../../../icons/comparator.gif"></a></td>
|
|
||||||
<td><a href="comparator.html">Comparador</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shifter.html"><img border="0" src="../../../../icons/shifter.gif"></a></td>
|
|
||||||
<td><a href="shifter.html">Deslocador</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitadder.html"><img border="0" src="../../../../icons/bitadder.gif"></a></td>
|
|
||||||
<td><a href="bitadder.html">Contador de Bits</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="bitfinder.html"><img border="0" src="../../../../icons/bitfindr.gif"></a></td>
|
|
||||||
<td><a href="bitfinder.html">Indexador de Bits</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Voltar à <em>Referência para bibliotecas</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,48 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Библиотека Элементы</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Библиотека Элементы</h1>
|
|
||||||
|
|
||||||
<p>Библиотека Элементы включает в себя множество простых компонентов, которые имеют один выход, значение на котором полностью определяется значениями на входах.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="not.html"><img border="0" src="../../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="not.html">Элемент НЕ</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="buffer.html"><img border="0" src="../../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="buffer.html">Буфер</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="basic.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="basic.html">Элементы И/ИЛИ/И-НЕ/ИЛИ-НЕ</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="xor.html">Элементы Исключающее ИЛИ/Исключающее ИЛИ-НЕ/Нечётность/Чётность</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="controlled.html">Управляемый буфер/инвертор</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Назад к <em>Справке по библиотеке</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,169 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Справка по библиотеке</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1><em>Справка по библиотеке</em></h1>
|
|
||||||
|
|
||||||
<p>Библиотека Logisim содержит набор <em>инструментов</em> для взаимодействия со схемой с помощью щелчков и перетаскиваний мышью в области холста. Чаще всего инструмент предназначен для добавления компонентов того или иного вида в схему, но некоторые из наиболее важных инструментов, такие как Инструмент Нажатие и Инструмент Выбор, позволяют пользователям взаимодействовать с компонентами и другими способами.</p>
|
|
||||||
|
|
||||||
<p>Все инструменты, включенные во встроенную библиотеку Logisim, представлены в этом справочном материале.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><font size="+1"><b><a href="wiring/index.html">Библиотека Проводка</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/splitter.html"><img border="0" src="../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/splitter.html">Разветвитель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pin.html">Контакт</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/probe.html"><img border="0" src="../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/probe.html">Датчик</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/tunnel.html"><img border="0" src="../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/tunnel.html">Тоннель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/pull.html"><img border="0" src="../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/pull.html">Согласующий резистор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/clock.html"><img border="0" src="../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/clock.html">Тактовый генератор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/constant.html"><img border="0" src="../../../icons/constant.gif" width="16" height="16">
|
|
||||||
</a></td><td><a href="wiring/constant.html">Константа</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/const01.html">Питание/Земля</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/transist.html">Транзистор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/transmis.html"><img border="0" src="../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
</a></td><td><a href="wiring/transmis.html">Передаточный вентиль</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="wiring/extender.html"><img border="0" src="../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="wiring/extender.html">Расширитель битов</a></td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="gates/index.html">Библиотека Элементы</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/not.html"><img border="0" src="../../../icons/notGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/notGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/not.html">Элемент НЕ</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/buffer.html"><img border="0" src="../../../icons/bufferGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/buffer.html">Буфер</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/basic.html" style="text-decoration: none"><img border="0" src="../../../icons/andGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/andGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/orGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/nandGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/norGateRect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/basic.html">Элементы И/ИЛИ/И-НЕ/ИЛИ-НЕ</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/xor.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/xorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xnorGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"><br>
|
|
||||||
<img border="0" src="../../../icons/xnorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/xorGateRect.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityOddGate.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/parityEvenGate.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/xor.html">Элементы Исключающее ИЛИ/Исключающее ИЛИ-НЕ/Нечётность/Чётность</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="gates/controlled.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/controlledBuffer.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/controlledInverter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="gates/controlled.html">Управляемый буфер/инвертор</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="plexers/index.html">Библиотека Плексоры</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/mux.html"><img border="0" src="../../../icons/multiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/mux.html">Мультиплексор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/demux.html"><img border="0" src="../../../icons/demultiplexer.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/demux.html">Демультиплексор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/decoder.html"><img border="0" src="../../../icons/decoder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/decoder.html">Декодер</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/priencod.html"><img border="0" src="../../../icons/priencod.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/priencod.html">Шифратор приоритетов</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="plexers/selector.html"><img border="0" src="../../../icons/bitSelector.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="plexers/selector.html">Селектор битов</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="arith/index.html">Библиотека Арифметика</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/adder.html"><img border="0" src="../../../icons/adder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/adder.html">Сумматор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/subtractor.html"><img border="0" src="../../../icons/subtractor.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/subtractor.html">Вычитатель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/multiplier.html"><img border="0" src="../../../icons/multiplier.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/multiplier.html">Множитель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/divider.html"><img border="0" src="../../../icons/divider.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/divider.html">Делитель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/negator.html"><img border="0" src="../../../icons/negator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/negator.html">Отрицатель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/comparator.html"><img border="0" src="../../../icons/comparator.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/comparator.html">Компаратор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/shifter.html"><img border="0" src="../../../icons/shifter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/shifter.html">Сдвигатель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitadder.html"><img border="0" src="../../../icons/bitadder.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitadder.html">Сумматор битов</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="arith/bitfinder.html"><img border="0" src="../../../icons/bitfindr.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="arith/bitfinder.html">Искатель битов</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="mem/index.html">Библиотека Память</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/flipflops.html">D/T/J-K/S-R триггеры</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/register.html"><img border="0" src="../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/register.html">Регистр</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/counter.html"><img border="0" src="../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/counter.html">Счётчик</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/shiftreg.html"><img border="0" src="../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/shiftreg.html">Сдвиговый регистр</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/random.html"><img border="0" src="../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/random.html">Генератор случайных чисел</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/ram.html"><img border="0" src="../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/ram.html">ОЗУ</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="mem/rom.html"><img border="0" src="../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="mem/rom.html">ПЗУ</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="io/index.html">Библиотека Ввод/вывод</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/button.html"><img border="0" src="../../../icons/button.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/button.html">Кнопка</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/joystick.html"><img border="0" src="../../../icons/joystick.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/joystick.html">Джойстик</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/keyboard.html"><img border="0" src="../../../icons/keyboard.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/keyboard.html">Клавиатура</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/led.html"><img border="0" src="../../../icons/led.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/led.html">Светодиод</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/7seg.html"><img border="0" src="../../../icons/7seg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/7seg.html">7-сегментный индикатор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/hexdig.html"><img border="0" src="../../../icons/hexdig.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/hexdig.html">Шестнадцатеричный индикатор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/dotmat.html"><img border="0" src="../../../icons/dotmat.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/dotmat.html">Светодиодная матрица</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="io/tty.html"><img border="0" src="../../../icons/tty.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="io/tty.html">Терминал</a></td></tr>
|
|
||||||
|
|
||||||
<tr><td colspan="2"><br><font size="+1"><b><a href="base/index.html">Библиотека Базовые</a></b></font></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/poke.html"><img border="0" src="../../../icons/poke.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/poke.html">Инструмент Нажатие</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/edit.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/edit.html">Инструмент Правка</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/select.html"><img border="0" src="../../../icons/select.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/select.html">Инструмент Выбор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/wiring.html"><img border="0" src="../../../icons/wiring.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/wiring.html">Инструмент Проводка</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/text.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/text.html">Инструмент Текст</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/menu.html"><img border="0" src="../../../icons/menu.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/menu.html">Инструмент Меню</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="base/label.html"><img border="0" src="../../../icons/text.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="base/label.html">Метка</a></td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,37 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Библиотека Память</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Библиотека Память</h1>
|
|
||||||
|
|
||||||
<p>Библиотека Память включает компоненты, которые запоминают информацию.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="flipflops.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/dFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/tFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/jkFlipFlop.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/srFlipFlop.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="flipflops.html">D/T/J-K/S-R триггеры</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="register.html"><img border="0" src="../../../../icons/register.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="register.html">Регистр</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="counter.html"><img border="0" src="../../../../icons/counter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="counter.html">Счётчик</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="shiftreg.html"><img border="0" src="../../../../icons/shiftreg.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="shiftreg.html">Сдвиговый регистр</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="random.html"><img border="0" src="../../../../icons/random.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="random.html">Генератор случайных чисел</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="ram.html"><img border="0" src="../../../../icons/ram.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="ram.html">ОЗУ</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="rom.html"><img border="0" src="../../../../icons/rom.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="rom.html">ПЗУ</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Назад к <em>Справке по библиотеке</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,48 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
||||||
<title>Библиотека Проводка</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="FFFFFF">
|
|
||||||
|
|
||||||
<h1>Библиотека Проводка</h1>
|
|
||||||
|
|
||||||
<p>Библиотека проводка включает в себя компоненты, которые относятся в основном к проводам и базовым понятиям электроники.</p>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr><td align="right"><a href="splitter.html"><img border="0" src="../../../../icons/splitter.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="splitter.html">Разветвитель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pin.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/pinInput.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/pinOutput.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pin.html">Контакт</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="probe.html"><img border="0" src="../../../../icons/probe.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="probe.html">Датчик</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="tunnel.html"><img border="0" src="../../../../icons/tunnel.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="tunnel.html">Тоннель</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="pull.html"><img border="0" src="../../../../icons/pullshap.gif" width="16" height="16"></a>
|
|
||||||
<img border="0" src="../../../../icons/pullrect.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="pull.html">Согласующий резистор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="clock.html"><img border="0" src="../../../../icons/clock.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="clock.html">Тактовый генератор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="constant.html"><img border="0" src="../../../../icons/constant.gif" width="16" height="16">
|
|
||||||
</a></td><td><a href="constant.html">Константа</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="const01.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/power.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/ground.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="const01.html">Питание/Земля</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transist.html" style="text-decoration: none">
|
|
||||||
<img border="0" src="../../../../icons/trans0.gif" width="16" height="16">
|
|
||||||
<img border="0" src="../../../../icons/trans1.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="transist.html">Транзистор</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="transmis.html"><img border="0" src="../../../../icons/transmis.gif" width="16" height="16">
|
|
||||||
</a></td><td><a href="transmis.html">Передаточный вентиль</a></td></tr>
|
|
||||||
<tr><td align="right"><a href="extender.html"><img border="0" src="../../../../icons/extender.gif" width="16" height="16"></a></td>
|
|
||||||
<td><a href="extender.html">Расширитель битов</a></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<p><a href="../index.html">Назад к <em>Справке по библиотеке</em></a></p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,13 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
REM need administrator access to run mklink!
|
|
||||||
|
|
||||||
cd bin
|
|
||||||
|
|
||||||
mklink /D boards_model ..\boards_model
|
|
||||||
mklink /D javax ..\javax
|
|
||||||
mklink /D libs ..\libs
|
|
||||||
mklink /D resources ..\resources
|
|
||||||
mklink /D doc ..\doc
|
|
||||||
|
|
||||||
cd ..
|
|
|
@ -1,13 +0,0 @@
|
||||||
# Creates the links which are missing and prevent Eclipse to successfully execute
|
|
||||||
# Logisim
|
|
||||||
|
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
mkdir -p bin
|
|
||||||
cd bin
|
|
||||||
ln -s ../boards_model .
|
|
||||||
ln -s ../javax .
|
|
||||||
ln -s ../libs .
|
|
||||||
ln -s ../resources .
|
|
||||||
ln -s ../doc .
|
|
||||||
cd ..
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
group = com.cburch
|
||||||
|
name = logisim-evolution
|
||||||
|
version = 2.14.7
|
|
@ -0,0 +1,5 @@
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-bin.zip
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
|
@ -0,0 +1,172 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
##
|
||||||
|
## Gradle start up script for UN*X
|
||||||
|
##
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
PRG="$0"
|
||||||
|
# Need this for relative symlinks.
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG=`dirname "$PRG"`"/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
SAVED="`pwd`"
|
||||||
|
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||||
|
APP_HOME="`pwd -P`"
|
||||||
|
cd "$SAVED" >/dev/null
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=`basename "$0"`
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS='"-Xmx64m"'
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD="maximum"
|
||||||
|
|
||||||
|
warn () {
|
||||||
|
echo "$*"
|
||||||
|
}
|
||||||
|
|
||||||
|
die () {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
nonstop=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN* )
|
||||||
|
cygwin=true
|
||||||
|
;;
|
||||||
|
Darwin* )
|
||||||
|
darwin=true
|
||||||
|
;;
|
||||||
|
MINGW* )
|
||||||
|
msys=true
|
||||||
|
;;
|
||||||
|
NONSTOP* )
|
||||||
|
nonstop=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="java"
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
||||||
|
MAX_FD_LIMIT=`ulimit -H -n`
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||||
|
MAX_FD="$MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
ulimit -n $MAX_FD
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Darwin, add options to specify how the application appears in the dock
|
||||||
|
if $darwin; then
|
||||||
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin ; then
|
||||||
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||||
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||||
|
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||||
|
|
||||||
|
# We build the pattern for arguments to be converted via cygpath
|
||||||
|
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||||
|
SEP=""
|
||||||
|
for dir in $ROOTDIRSRAW ; do
|
||||||
|
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||||
|
SEP="|"
|
||||||
|
done
|
||||||
|
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||||
|
# Add a user-defined pattern to the cygpath arguments
|
||||||
|
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||||
|
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||||
|
fi
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
i=0
|
||||||
|
for arg in "$@" ; do
|
||||||
|
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||||
|
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||||
|
|
||||||
|
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||||
|
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||||
|
else
|
||||||
|
eval `echo args$i`="\"$arg\""
|
||||||
|
fi
|
||||||
|
i=$((i+1))
|
||||||
|
done
|
||||||
|
case $i in
|
||||||
|
(0) set -- ;;
|
||||||
|
(1) set -- "$args0" ;;
|
||||||
|
(2) set -- "$args0" "$args1" ;;
|
||||||
|
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||||
|
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||||
|
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||||
|
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||||
|
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||||
|
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||||
|
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Escape application args
|
||||||
|
save () {
|
||||||
|
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||||
|
echo " "
|
||||||
|
}
|
||||||
|
APP_ARGS=$(save "$@")
|
||||||
|
|
||||||
|
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
||||||
|
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
||||||
|
|
||||||
|
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
|
||||||
|
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec "$JAVACMD" "$@"
|
|
@ -0,0 +1,84 @@
|
||||||
|
@if "%DEBUG%" == "" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS="-Xmx64m"
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if "%ERRORLEVEL%" == "0" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:init
|
||||||
|
@rem Get command-line arguments, handling Windows variants
|
||||||
|
|
||||||
|
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||||
|
|
||||||
|
:win9xME_args
|
||||||
|
@rem Slurp the command line arguments.
|
||||||
|
set CMD_LINE_ARGS=
|
||||||
|
set _SKIP=2
|
||||||
|
|
||||||
|
:win9xME_args_slurp
|
||||||
|
if "x%~1" == "x" goto execute
|
||||||
|
|
||||||
|
set CMD_LINE_ARGS=%*
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
BIN
libs/jh.jar
|
@ -1,185 +0,0 @@
|
||||||
<!--
|
|
||||||
logisim-evolution : Ant build configuration file
|
|
||||||
|
|
||||||
Original code by Adrien Lescourt - 10.2011
|
|
||||||
-->
|
|
||||||
|
|
||||||
<project name="logisim-evolution" default="compile" basedir="."
|
|
||||||
xmlns:fx="javafx:com.sun.javafx.tools.ant">
|
|
||||||
|
|
||||||
<property name="app.name" value="Logisim-evolution"/>
|
|
||||||
<property name="app.version" value="2.14.3"/>
|
|
||||||
|
|
||||||
<target name="cleanall" depends="clean">
|
|
||||||
<delete dir="bin/com/bfh/"/>
|
|
||||||
<delete dir="bin/com/cburch/"/>
|
|
||||||
<delete dir="bin/com/hepia/"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="clean">
|
|
||||||
<delete file="logisim-evolution.jar"/>
|
|
||||||
<delete file="logisim-evolution_src.jar"/>
|
|
||||||
<delete file="package/logisim-evolution.jar"/>
|
|
||||||
<delete file="package/${app.name}.jnlp"/>
|
|
||||||
<delete file="package/${app.name}_browser.jnlp"/>
|
|
||||||
<delete file="package/${app.name}.html"/>
|
|
||||||
<delete dir="package/bundles"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="compile" depends="clean">
|
|
||||||
<mkdir dir="bin"/>
|
|
||||||
<javac srcdir="src" includeantruntime="false" destdir="bin" source="1.7" target="1.7" classpath="libs/colorpicker.jar:libs/fontchooser.jar:libs/jh.jar:libs/MRJAdapter.jar:libs/nimrodlf.jar:libs/rsyntaxtextarea.jar:libs/logback-classic-1.1.2.jar:libs/logback-core-1.1.2.jar:libs/slf4j-api-1.7.8.jar:libs/junit-4.12.jar:libs/hamcrest-core-1.3.jar" />
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="jar" depends="compile">
|
|
||||||
<jar destfile="logisim-evolution.jar">
|
|
||||||
<fileset dir="bin" excludes="resources/ libs/ javax/ doc/ boards_model/"/>
|
|
||||||
<fileset dir="." includes="doc/ resources/" excludes="doc/**/html/guide/analyze/" />
|
|
||||||
<zipgroupfileset dir="libs" includes="*.jar"/>
|
|
||||||
<manifest>
|
|
||||||
<attribute name="Main-Class" value="com.cburch.logisim.Main"/>
|
|
||||||
</manifest>
|
|
||||||
</jar>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="jarsrc" depends="jar">
|
|
||||||
<jar destfile="Logisim_src.jar">
|
|
||||||
<fileset dir="bin" />
|
|
||||||
<fileset dir="." includes="doc/ src/ build.xml publi/" />
|
|
||||||
<zipgroupfileset dir="libs" includes="*.jar"/>
|
|
||||||
<manifest>
|
|
||||||
<attribute name="Main-Class" value="com.cburch.logisim.Main"/>
|
|
||||||
</manifest>
|
|
||||||
</jar>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="jar_all" depends="compile">
|
|
||||||
<patch patchfile="main.patch" originalfile="src/com/cburch/logisim/Main.java"/>
|
|
||||||
<jar destfile="logisim-evolution.jar">
|
|
||||||
<fileset dir="bin" excludes="resources/ libs/ javax/ doc/ boards_model/"/>
|
|
||||||
<fileset dir="." includes="doc/ resources/" />
|
|
||||||
<zipgroupfileset dir="libs" includes="*.jar"/>
|
|
||||||
<manifest>
|
|
||||||
<attribute name="Main-Class" value="com.cburch.logisim.Main"/>
|
|
||||||
</manifest>
|
|
||||||
</jar>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
|
|
||||||
<target name="run" depends="jar">
|
|
||||||
<java jar="logisim-evolution.jar" fork="true"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="run_all" depends="jar">
|
|
||||||
<java jar="logisim-evolution.jar" fork="true"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<!-- Task package will fail on macOS High Sierra while generating a DMG
|
|
||||||
due to bug JDK-8190758. Use task package_macos instead to generate
|
|
||||||
an app bundle. -->
|
|
||||||
<target name="package" depends="jar">
|
|
||||||
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml"
|
|
||||||
uri="javafx:com.sun.javafx.tools.ant"
|
|
||||||
classpath=".:${java.home}/lib/ant-javafx.jar"/>
|
|
||||||
<fx:deploy width="600" height="400"
|
|
||||||
embeddedWidth="100%" embeddedHeight="100%"
|
|
||||||
outdir="${basedir}/package"
|
|
||||||
outfile="${app.name}"
|
|
||||||
nativeBundles="all"
|
|
||||||
signBundle="false"
|
|
||||||
verbose="true">
|
|
||||||
|
|
||||||
<fx:application name="${app.name}"
|
|
||||||
mainClass="com.cburch.logisim.Main"
|
|
||||||
version="${app.version}"
|
|
||||||
toolkit="swing"
|
|
||||||
/>
|
|
||||||
<!-- Package only application and dependencies but not the JRE -->
|
|
||||||
<!-- Unfortunately, removed in JDK 9. No workaround known yet. -->
|
|
||||||
<!-- <fx:platform basedir=""/> -->
|
|
||||||
|
|
||||||
<fx:resources>
|
|
||||||
<fx:fileset dir="." includes="logisim-evolution.jar"/>
|
|
||||||
</fx:resources>
|
|
||||||
|
|
||||||
<fx:info title="${app.name}"
|
|
||||||
vendor="${app.name} development team"
|
|
||||||
description="${app.name} for design and simulation of digital logic circuits"
|
|
||||||
category="Engineering"
|
|
||||||
copyright="Copyright (C) 2001--2018 Carl Burch, BFH, HEIG-VD, HEPIA, et al."
|
|
||||||
license="GNU GENERAL PUBLIC LICENSE, version 3"
|
|
||||||
>
|
|
||||||
<fx:association extension="circ" mimetype="application-prs.cburch.logisim" description="${app.name} circuit file"/>
|
|
||||||
</fx:info>
|
|
||||||
<fx:bundleArgument arg="email" value="roberto.rigamonti@heig-vd.ch"/>
|
|
||||||
<fx:bundleArgument arg="linux.bundleName" value="logisim-evolution"/>
|
|
||||||
<!-- See https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8 for list of AppStore categories -->
|
|
||||||
<fx:bundleArgument arg="mac.category" value="public.app-category.education"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleName" value="Logisim"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleIdentifier" value="com.cburch.logisim"/>
|
|
||||||
<fx:bundleArgument arg="win.menuGroup" value="Engineering"/>
|
|
||||||
<fx:bundleArgument arg="signBundle" value="false"/>
|
|
||||||
<fx:bundleArgument arg="dropinResourcesRoot" value="${basedir}"/>
|
|
||||||
|
|
||||||
<fx:preferences install="true"
|
|
||||||
installDirChooser="true"
|
|
||||||
menu="true"/>
|
|
||||||
</fx:deploy>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<!-- DMG generation is broken on macOS High Sierra, cf. to
|
|
||||||
https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8190758 for
|
|
||||||
details. Problem is only fixed in JDK 8u162 and the upcoming JDK 10.
|
|
||||||
There is no fix for JDK 9. This task package_macos works around the
|
|
||||||
problem by only generating a pkg installer. -->
|
|
||||||
<target name="package_macos" depends="jar">
|
|
||||||
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml"
|
|
||||||
uri="javafx:com.sun.javafx.tools.ant"
|
|
||||||
classpath=".:${java.home}/lib/ant-javafx.jar"/>
|
|
||||||
<fx:deploy width="600" height="400"
|
|
||||||
embeddedWidth="100%" embeddedHeight="100%"
|
|
||||||
outdir="${basedir}/package"
|
|
||||||
outfile="${app.name}"
|
|
||||||
nativeBundles="pkg"
|
|
||||||
signBundle="false"
|
|
||||||
verbose="true">
|
|
||||||
|
|
||||||
<fx:application name="${app.name}"
|
|
||||||
mainClass="com.cburch.logisim.Main"
|
|
||||||
version="${app.version}"
|
|
||||||
toolkit="swing"
|
|
||||||
/>
|
|
||||||
<!-- Package only application and dependencies but not the JRE -->
|
|
||||||
<!-- Unfortunately, removed in JDK 9. No workaround known yet. -->
|
|
||||||
<!-- <fx:platform basedir=""/> -->
|
|
||||||
|
|
||||||
<fx:resources>
|
|
||||||
<fx:fileset dir="." includes="logisim-evolution.jar"/>
|
|
||||||
</fx:resources>
|
|
||||||
|
|
||||||
<fx:info title="${app.name}"
|
|
||||||
vendor="${app.name} development team"
|
|
||||||
description="${app.name} for design and simulation of digital logic circuits"
|
|
||||||
category="Engineering"
|
|
||||||
copyright="Copyright (C) 2001--2018 Carl Burch, BFH, HEIG-VD, HEPIA, et al."
|
|
||||||
license="GNU GENERAL PUBLIC LICENSE, version 3"
|
|
||||||
>
|
|
||||||
<fx:association extension="circ" mimetype="application-prs.cburch.logisim" description="${app.name} circuit file"/>
|
|
||||||
</fx:info>
|
|
||||||
<fx:bundleArgument arg="email" value="roberto.rigamonti@heig-vd.ch"/>
|
|
||||||
<fx:bundleArgument arg="linux.bundleName" value="logisim-evolution"/>
|
|
||||||
<!-- See https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8 for list of AppStore categories -->
|
|
||||||
<fx:bundleArgument arg="mac.category" value="public.app-category.education"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleName" value="Logisim"/>
|
|
||||||
<fx:bundleArgument arg="mac.CFBundleIdentifier" value="com.cburch.logisim"/>
|
|
||||||
<fx:bundleArgument arg="win.menuGroup" value="Engineering"/>
|
|
||||||
<fx:bundleArgument arg="signBundle" value="false"/>
|
|
||||||
<fx:bundleArgument arg="dropinResourcesRoot" value="${basedir}"/>
|
|
||||||
|
|
||||||
<fx:preferences install="true"
|
|
||||||
installDirChooser="true"
|
|
||||||
menu="true"/>
|
|
||||||
</fx:deploy>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
</project>
|
|
|
@ -1,8 +0,0 @@
|
||||||
73c73
|
|
||||||
< public static boolean ANALYZE = false;
|
|
||||||
---
|
|
||||||
> public static boolean ANALYZE = true;
|
|
||||||
80c80
|
|
||||||
< public static boolean UPDATE = true;
|
|
||||||
---
|
|
||||||
> public static boolean UPDATE = false;
|
|
|
@ -1,12 +0,0 @@
|
||||||
#!/usr/bin/env xdg-open
|
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Version=1.0
|
|
||||||
Name=Logisim-evolution
|
|
||||||
Comment=Educational tool for designing and simulating digital logic circuits
|
|
||||||
Exec=/opt/Logisim-evolution/Logisim-evolution
|
|
||||||
Icon=/opt/Logisim-evolution/Logisim-evolution.png
|
|
||||||
Terminal=false
|
|
||||||
MimeType=application/prs.cburch.logisim
|
|
||||||
Categories=Development;Electronics
|
|
||||||
Keywords=CPLD;FPGA
|
|
Before Width: | Height: | Size: 14 KiB |
|
@ -1,101 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# postinst script for Logisim-evolution
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <postinst> `configure' <most-recently-configured-version>
|
|
||||||
# * <old-postinst> `abort-upgrade' <new version>
|
|
||||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
||||||
# <new-version>
|
|
||||||
# * <postinst> `abort-remove'
|
|
||||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
||||||
# <failed-install-package> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure)
|
|
||||||
echo "Adding shortcut to the menu"
|
|
||||||
xdg-desktop-menu install --novendor /opt/Logisim-evolution/Logisim-evolution.desktop
|
|
||||||
xdg-mime install /opt/Logisim-evolution/Logisim-evolutiondevelopmentteam-Logisim-evolution-MimeInfo.xml
|
|
||||||
|
|
||||||
echo "Installing command line tool logisim-evolution"
|
|
||||||
ln -s /opt/Logisim-evolution/Logisim-evolution /usr/bin/logisim-evolution
|
|
||||||
|
|
||||||
if [ "false" = "true" ]; then
|
|
||||||
echo Installing daemon
|
|
||||||
cp /opt/Logisim-evolution/logisim-evolution.init /etc/init.d/logisim-evolution
|
|
||||||
|
|
||||||
if [ -x "/etc/init.d/logisim-evolution" ]; then
|
|
||||||
update-rc.d logisim-evolution defaults
|
|
||||||
|
|
||||||
if [ "false" = "true" ]; then
|
|
||||||
if which invoke-rc.d >/dev/null 2>&1; then
|
|
||||||
invoke-rc.d logisim-evolution start
|
|
||||||
else
|
|
||||||
/etc/init.d/logisim-evolution start
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
if [ -f /etc/profile ]; then
|
|
||||||
# load special environment variables
|
|
||||||
. /etc/profile
|
|
||||||
|
|
||||||
# remove stored value in case of dpkg-reconfigure
|
|
||||||
RUNTIME_PATH_TO_SET=""
|
|
||||||
|
|
||||||
if [ -z "$JRE_HOME" ]; then
|
|
||||||
echo JRE_HOME is not set, checking for JAVA_HOME being set
|
|
||||||
if [ -z "$JAVA_HOME" ]; then
|
|
||||||
echo JAVA_HOME is not set, checking for known locations
|
|
||||||
|
|
||||||
# look for known locations
|
|
||||||
KNOWN_JDK_DIRS="/usr/lib/jvm/java-8-oracle /usr/lib/jvm/java-8-openjdk-amd64 /usr/lib/jvm/java-8-openjdk-i386"
|
|
||||||
FOUND_JAVA_HOME=""
|
|
||||||
|
|
||||||
# Look for the right JVM to use (use the first one)
|
|
||||||
for potentialjdkdir in $KNOWN_JDK_DIRS; do
|
|
||||||
if [ -r "$potentialjdkdir/bin/java" -a -z "$FOUND_JAVA_HOME" ]; then
|
|
||||||
FOUND_JAVA_HOME="$potentialjdkdir"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ -z "$FOUND_JAVA_HOME" ]; then
|
|
||||||
# still nothing found :(
|
|
||||||
echo Please make sure to have Java installed and JRE_HOME variable set before running Logisim-evolution
|
|
||||||
else
|
|
||||||
echo Updating runtime-settings using known location
|
|
||||||
RUNTIME_PATH_TO_SET="$FOUND_JAVA_HOME"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo Updating runtime-settings using JAVA_HOME
|
|
||||||
# JAVA_HOME is set, use that value
|
|
||||||
RUNTIME_PATH_TO_SET="$JAVA_HOME"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# always write runtime-location, as it might get removed again when user calls dpkg-reconfigure
|
|
||||||
sed -i "s|app.runtime=.*|app.runtime=$RUNTIME_PATH_TO_SET|g" /opt/Logisim-evolution/app/Logisim-evolution.cfg
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
abort-upgrade|abort-remove|abort-deconfigure)
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "postinst called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -1,46 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# postrm script for Logisim-evolution
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <postrm> `remove'
|
|
||||||
# * <postrm> `purge'
|
|
||||||
# * <old-postrm> `upgrade' <new-version>
|
|
||||||
# * <new-postrm> `failed-upgrade' <old-version>
|
|
||||||
# * <new-postrm> `abort-install'
|
|
||||||
# * <new-postrm> `abort-install' <old-version>
|
|
||||||
# * <new-postrm> `abort-upgrade' <old-version>
|
|
||||||
# * <disappearer's-postrm> `disappear' <overwriter>
|
|
||||||
# <overwriter-version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
||||||
echo "Uninstalling command line tool logisim-evolution"
|
|
||||||
rm /usr/bin/logisim-evolution
|
|
||||||
if [ "$1" = "purge" ] ; then
|
|
||||||
if [ "false" = "true" ]; then
|
|
||||||
echo "Uninstalling daemon"
|
|
||||||
rm -f /etc/init.d/logisim-evolution
|
|
||||||
|
|
||||||
update-rc.d logisim-evolution remove
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "postrm called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -1,92 +0,0 @@
|
||||||
<?xml version="1.0" ?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LSMinimumSystemVersion</key>
|
|
||||||
<string>10.9</string>
|
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
|
||||||
<string>English</string>
|
|
||||||
<key>CFBundleAllowMixedLocalizations</key>
|
|
||||||
<true/>
|
|
||||||
<key>CFBundleExecutable</key>
|
|
||||||
<string>Logisim-evolution</string>
|
|
||||||
<key>CFBundleIconFile</key>
|
|
||||||
<string>Logisim-evolution.icns</string>
|
|
||||||
<key>CFBundleIdentifier</key>
|
|
||||||
<string>com.cburch.logisim</string>
|
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
|
||||||
<string>6.0</string>
|
|
||||||
<key>CFBundleName</key>
|
|
||||||
<string>Logisim</string>
|
|
||||||
<key>CFBundlePackageType</key>
|
|
||||||
<string>APPL</string>
|
|
||||||
<key>CFBundleShortVersionString</key>
|
|
||||||
<string>2.14.7</string>
|
|
||||||
<key>CFBundleSignature</key>
|
|
||||||
<string>????</string>
|
|
||||||
<!-- See http://developer.apple.com/library/mac/#releasenotes/General/SubmittingToMacAppStore/_index.html
|
|
||||||
for list of AppStore categories -->
|
|
||||||
<key>LSApplicationCategoryType</key>
|
|
||||||
<string>public.app-category.education</string>
|
|
||||||
<key>CFBundleVersion</key>
|
|
||||||
<string>2.14.4</string>
|
|
||||||
<key>NSHumanReadableCopyright</key>
|
|
||||||
<string>Copyright (C) 2001--2018 Carl Burch, BFH, HEIG-VD, HEPIA, et al.</string>
|
|
||||||
<key>CFBundleDocumentTypes</key>
|
|
||||||
<array>
|
|
||||||
<dict>
|
|
||||||
<key>LSItemContentTypes</key>
|
|
||||||
<array>
|
|
||||||
<string>com.cburch.logisim.circ</string>
|
|
||||||
</array>
|
|
||||||
|
|
||||||
<key>CFBundleTypeName</key>
|
|
||||||
<string>Logisim-evolution circuit file</string>
|
|
||||||
|
|
||||||
<key>LSHandlerRank</key>
|
|
||||||
<string>Owner</string>
|
|
||||||
|
|
||||||
<key>CFBundleTypeRole</key>
|
|
||||||
<string>Editor</string>
|
|
||||||
|
|
||||||
<key>LSIsAppleDefaultForType</key>
|
|
||||||
<true/>
|
|
||||||
|
|
||||||
</dict>
|
|
||||||
</array>
|
|
||||||
|
|
||||||
<key>UTExportedTypeDeclarations</key>
|
|
||||||
<array>
|
|
||||||
<dict>
|
|
||||||
<key>UTTypeIdentifier</key>
|
|
||||||
<string>com.cburch.logisim.circ</string>
|
|
||||||
|
|
||||||
<key>UTTypeDescription</key>
|
|
||||||
<string>Logisim-evolution circuit file</string>
|
|
||||||
<key>UTTypeConformsTo</key>
|
|
||||||
<array>
|
|
||||||
<string>public.data</string>
|
|
||||||
</array>
|
|
||||||
|
|
||||||
|
|
||||||
<key>UTTypeTagSpecification</key>
|
|
||||||
<dict>
|
|
||||||
|
|
||||||
<key>public.filename-extension</key>
|
|
||||||
<array>
|
|
||||||
<string>circ</string>
|
|
||||||
</array>
|
|
||||||
<key>public.mime-type</key>
|
|
||||||
<array>
|
|
||||||
<string>application-prs.cburch.logisim</string>
|
|
||||||
</array>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
</array>
|
|
||||||
|
|
||||||
<key>NSHighResolutionCapable</key>
|
|
||||||
<string>true</string>
|
|
||||||
<key>NSSupportsAutomaticGraphicsSwitching</key>
|
|
||||||
<string>true</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
Before Width: | Height: | Size: 41 KiB |
|
@ -1,5 +0,0 @@
|
||||||
*.pdf
|
|
||||||
*.log
|
|
||||||
*.aux
|
|
||||||
*.bbl
|
|
||||||
*.blg
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
rm *.aux *.bbl *.blg *.log *.pdf
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
pdflatex tutoLogisim.tex; bibtex tutoLogisim.aux; pdflatex tutoLogisim.tex; pdflatex tutoLogisim.tex;
|
|
|
@ -1,132 +0,0 @@
|
||||||
% Classe exercice.cls - Version 1.0
|
|
||||||
% Y. Thoma dec. 2005
|
|
||||||
%
|
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
|
||||||
\ProvidesClass{exercice}[2006/10/17 v1.1 Classe exercice]
|
|
||||||
|
|
||||||
\LoadClass[a4paper,oneside,onecolumn,11pt,reversemp,asymmetric]{article}
|
|
||||||
%\LoadClass[12pt]{article}
|
|
||||||
|
|
||||||
%\RequirePackage{vhdl}
|
|
||||||
\RequirePackage{graphicx}
|
|
||||||
\RequirePackage[francais]{layout}
|
|
||||||
\RequirePackage{alltt}
|
|
||||||
\RequirePackage{xcolor}
|
|
||||||
\RequirePackage{fancybox}
|
|
||||||
\RequirePackage{booktabs}
|
|
||||||
|
|
||||||
|
|
||||||
\RequirePackage{palatino}
|
|
||||||
\RequirePackage[all]{xy}
|
|
||||||
\RequirePackage[wide, margincaption, leftbody, raggedleft]{sidecap}
|
|
||||||
\RequirePackage[bindingoffset=10mm, marginparwidth=35mm,
|
|
||||||
right=15mm, left=15mm, top=15mm, bottom=20mm]{geometry}
|
|
||||||
\RequirePackage[french]{babel}
|
|
||||||
\RequirePackage[T1]{fontenc}
|
|
||||||
\RequirePackage[labelfont={sf,bf}, textfont=it, labelsep=period]{caption}
|
|
||||||
\RequirePackage{graphicx}
|
|
||||||
\RequirePackage{fancyhdr}
|
|
||||||
\RequirePackage{fancyvrb}
|
|
||||||
\RequirePackage{ifthen}
|
|
||||||
\RequirePackage{titlesec}
|
|
||||||
\RequirePackage{picins}
|
|
||||||
\RequirePackage{multirow}
|
|
||||||
\RequirePackage{booktabs}
|
|
||||||
\RequirePackage{enumerate}
|
|
||||||
\RequirePackage{pifont}
|
|
||||||
\RequirePackage{amsmath,amssymb,mathrsfs}
|
|
||||||
|
|
||||||
\newcounter{questioncounter}
|
|
||||||
\setcounter{questioncounter}{1}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\setlength{\oddsidemargin}{0pt}
|
|
||||||
\setlength{\textwidth}{16cm}
|
|
||||||
\setlength{\parindent}{0pt}
|
|
||||||
|
|
||||||
\newcommand{\extitle}[1]{\begin{center}{\Huge #1}\end{center}\vspace{1cm}}
|
|
||||||
|
|
||||||
|
|
||||||
%\doublebox{
|
|
||||||
%\begin{minipage}{\textwidth}
|
|
||||||
%\begin{center}
|
|
||||||
%\end{center}\end{minipage}}
|
|
||||||
|
|
||||||
%\newenvironment{exercice}[1][]{\extitle{#1}}{}
|
|
||||||
%\newenvironment{exercice}[1][]{\section{#1}}{}
|
|
||||||
\newenvironment{exercice}[1][]{{%
|
|
||||||
\noindent%
|
|
||||||
\begin{minipage}[l]{\linewidth}%
|
|
||||||
\vspace{8mm}%
|
|
||||||
\rule{\linewidth}{0.2mm} \\%
|
|
||||||
%%\vspace{1mm}%
|
|
||||||
\large\textbf{Exercice \thequestioncounter :} #1\\ %
|
|
||||||
\rule{\linewidth}{0.2mm}%
|
|
||||||
\vspace{5mm}%
|
|
||||||
\addtocounter{questioncounter}{1}%
|
|
||||||
\end{minipage}}}{}
|
|
||||||
|
|
||||||
|
|
||||||
\newif\if@enonce \@enoncetrue
|
|
||||||
\DeclareOption{onlysolution}{\@enoncefalse
|
|
||||||
\newenvironment{solution}{{%
|
|
||||||
\noindent%
|
|
||||||
\begin{minipage}[l]{\linewidth}%
|
|
||||||
\large\textbf{Solution:}\\ %
|
|
||||||
\end{minipage}}}{}}
|
|
||||||
|
|
||||||
|
|
||||||
\DeclareOption{nosolution}{\input{solutioncomments.clo}}
|
|
||||||
\DeclareOption{solution}{\newenvironment{solution}{{%
|
|
||||||
\noindent%
|
|
||||||
\begin{minipage}[l]{\linewidth}%
|
|
||||||
\vspace{8mm}%
|
|
||||||
%%\rule{\linewidth}{0.2mm} \\%
|
|
||||||
%%\vspace{1mm}%
|
|
||||||
\large\textbf{Solution:}\\ %
|
|
||||||
\rule{\linewidth}{0.2mm}%
|
|
||||||
\vspace{5mm}%
|
|
||||||
\end{minipage}}}{}}
|
|
||||||
|
|
||||||
\newcommand\entete[2]{%
|
|
||||||
\noindent%
|
|
||||||
\begin{minipage}[l]{\linewidth}%
|
|
||||||
{\large #1} \\%
|
|
||||||
\rule{\linewidth}{0.2mm} \\%
|
|
||||||
%
|
|
||||||
{\vspace{-5mm}%
|
|
||||||
\parpic[r]{\includegraphics[width=4cm]{HESSO_logo}}%
|
|
||||||
\hspace{-3.5mm}\includegraphics[width=6cm]{HEPIA_logo}\vspace{-3mm} \\%
|
|
||||||
% \textbf{Haute école du paysage, d'ingénierie et d'architecture. } \\%
|
|
||||||
\textbf{} \\%
|
|
||||||
% \textbf{Laboratoire de systèmes numériques} \\%
|
|
||||||
#2}\vspace{8mm}%
|
|
||||||
%
|
|
||||||
\vspace{5mm}%
|
|
||||||
\end{minipage}}
|
|
||||||
|
|
||||||
|
|
||||||
\def\baa #1{\leavevmode %
|
|
||||||
#1 %
|
|
||||||
\kern-.55em \raise 1.1em \hbox{\_}\kern-.1em %
|
|
||||||
}
|
|
||||||
\newcommand{\ba}[1]{\baa #1}
|
|
||||||
\newcommand{\gand}{\cdot}
|
|
||||||
\newcommand{\gor}{+}
|
|
||||||
\newcommand{\gnor}{\downarrow}
|
|
||||||
\newcommand{\gnand}{\uparrow}
|
|
||||||
\newcommand{\gxor}{\oplus}
|
|
||||||
|
|
||||||
\DeclareOption{nonumber}{\newcounter{thecounter}
|
|
||||||
\setcounter{thecounter}{0}\renewenvironment{exercice}[2][]{
|
|
||||||
\addtocounter{thecounter}{1}\section*{#2 \arabic{thecounter} #1}}{}}
|
|
||||||
|
|
||||||
\ProcessOptions
|
|
||||||
|
|
||||||
|
|
||||||
\if@enonce
|
|
||||||
\newenvironment{enonce}{}{}
|
|
||||||
\else
|
|
||||||
\input{enoncecomments.clo}
|
|
||||||
\fi
|
|
Before Width: | Height: | Size: 308 KiB |
Before Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 2.2 MiB |
Before Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 164 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 75 KiB |
Before Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 785 KiB |
Before Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 215 KiB |
Before Width: | Height: | Size: 40 KiB |
|
@ -1,578 +0,0 @@
|
||||||
% PICINS.STY --- Style File zum Einbinden von Bildern
|
|
||||||
% Autor: J. Bleser, E. Lang
|
|
||||||
% Hochschulrechenzentrum
|
|
||||||
% Technische Hochschule Darmstadt
|
|
||||||
% !!! Dieses Style-File ist urheberrechtlich geschuetzt !!!
|
|
||||||
% !!! Aenderungen nur mit Zustimmung der Autoren !!!
|
|
||||||
\message{Option `picins' Version 3.0 Sep. 1992, TH Darmstadt/HRZ}
|
|
||||||
\newbox\@BILD%
|
|
||||||
\newbox\@TEXT%
|
|
||||||
\newdimen\d@breite%
|
|
||||||
\newdimen\d@hoehe%
|
|
||||||
\newdimen\d@xoff%
|
|
||||||
\newdimen\d@yoff%
|
|
||||||
\newdimen\d@shad%
|
|
||||||
\newdimen\d@dash%
|
|
||||||
\newdimen\d@boxl%
|
|
||||||
\newdimen\d@pichskip%
|
|
||||||
\newdimen\d@tmp
|
|
||||||
\newdimen\d@tmpa
|
|
||||||
\newdimen\d@bskip
|
|
||||||
\newdimen\hsiz@%
|
|
||||||
\newdimen\p@getot@l%
|
|
||||||
\newcount\c@breite
|
|
||||||
\newcount\c@hoehe
|
|
||||||
\newcount\c@xoff
|
|
||||||
\newcount\c@yoff
|
|
||||||
\newcount\c@pos
|
|
||||||
\newcount\c@shad
|
|
||||||
\newcount\c@dash
|
|
||||||
\newcount\c@boxl
|
|
||||||
\newcount\c@zeilen%
|
|
||||||
\newcount\@changemode%
|
|
||||||
\newcount\c@piccaption%
|
|
||||||
\newcount\c@piccaptionpos%
|
|
||||||
\newcount\c@picpos
|
|
||||||
\newcount\c@whole%
|
|
||||||
\newcount\c@half%
|
|
||||||
\newcount\c@tmp
|
|
||||||
\newcount\c@tmpa
|
|
||||||
\newcount\c@tmpb
|
|
||||||
\newcount\c@tmpc
|
|
||||||
\newcount\c@tmpd
|
|
||||||
\newskip\d@leftskip
|
|
||||||
\newif\if@list \@listfalse%
|
|
||||||
\newif\if@offset%
|
|
||||||
|
|
||||||
|
|
||||||
\c@piccaptionpos=1%
|
|
||||||
\c@picpos=0
|
|
||||||
\d@shad=4pt%
|
|
||||||
\d@dash=4pt%
|
|
||||||
\d@boxl=10pt%
|
|
||||||
\d@pichskip=1em%
|
|
||||||
\@changemode=0%
|
|
||||||
\def\@captype{figure}%
|
|
||||||
\let\old@par=\par%
|
|
||||||
|
|
||||||
\def\pichskip#1{\d@pichskip #1\relax}
|
|
||||||
|
|
||||||
|
|
||||||
\def\shadowthickness#1{\d@shad #1\relax}
|
|
||||||
|
|
||||||
|
|
||||||
\def\dashlength#1{\d@dash #1\relax}
|
|
||||||
|
|
||||||
|
|
||||||
\def\boxlength#1{\d@boxl #1\relax}
|
|
||||||
|
|
||||||
|
|
||||||
\def\picchangemode{\@changemode=1}%
|
|
||||||
\def\nopicchangemode{\@changemode=0}%
|
|
||||||
|
|
||||||
|
|
||||||
\def\piccaptionoutside{\c@piccaptionpos=1}%
|
|
||||||
\def\piccaptioninside{\c@piccaptionpos=2}%
|
|
||||||
\def\piccaptionside{\c@piccaptionpos=3}%
|
|
||||||
\def\piccaptiontopside{\c@piccaptionpos=4}%
|
|
||||||
|
|
||||||
\def\piccaption{\@ifnextchar [{\@piccaption}{\@piccaption[]}}
|
|
||||||
\def\@piccaption[#1]#2{\c@piccaption=1\def\sh@rtf@rm{#1}\def\capti@nt@xt{#2}}
|
|
||||||
\def\make@piccaption{%
|
|
||||||
\hsiz@\d@breite%
|
|
||||||
\ifnum\c@piccaptionpos=2%
|
|
||||||
\advance\hsiz@ -2\fboxsep%
|
|
||||||
\fi%
|
|
||||||
\ifnum\c@piccaptionpos>2%
|
|
||||||
\hsiz@\hsize\advance\hsiz@-\d@breite\advance\hsiz@-\d@pichskip%
|
|
||||||
\fi%
|
|
||||||
\setbox\@TEXT=\vbox{\hsize\hsiz@\caption[\sh@rtf@rm]{\capti@nt@xt}}%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\def\newcaption{\refstepcounter\@captype\@dblarg{\@newcaption\@captype}}
|
|
||||||
\long\def\@newcaption#1[#2]#3{%
|
|
||||||
\old@par%
|
|
||||||
\addcontentsline{\csname ext@#1\endcsname }{#1}%
|
|
||||||
{\protect\numberline{\csname the#1\endcsname}{\ignorespaces #2}}
|
|
||||||
\begingroup\@parboxrestore\normalsize%
|
|
||||||
\@newmakecaption{\csname fnum@#1\endcsname}{\ignorespaces #3}\old@par%
|
|
||||||
\endgroup%
|
|
||||||
}
|
|
||||||
\long\def\@newmakecaption#1#2{%
|
|
||||||
\vskip 10pt%
|
|
||||||
\setbox\@tempboxa \hbox {#1: #2}%
|
|
||||||
\ifdim \wd\@tempboxa >\hsize%
|
|
||||||
\setbox0=\hbox{#1: }\dimen0=\hsize\advance\dimen0 by-\wd0
|
|
||||||
\setbox1=\vtop{\hsize=\dimen0 #2}
|
|
||||||
\hbox{\box0 \box1}
|
|
||||||
\par
|
|
||||||
\else \hbox to\hsize {\hfil \box \@tempboxa \hfil}
|
|
||||||
\fi
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\def\parpic{%
|
|
||||||
\@ifnextchar ({\iparpic}{\iparpic(0pt,0pt)}
|
|
||||||
}
|
|
||||||
\def\iparpic(#1,#2){%
|
|
||||||
\@ifnextchar ({\@offsettrue\iiparpic(#1,#2)}%
|
|
||||||
{\@offsetfalse\iiparpic(#1,#2)(0pt,0pt)}
|
|
||||||
}
|
|
||||||
\def\iiparpic(#1,#2)(#3,#4){%
|
|
||||||
\@ifnextchar [{\iiiparpic(#1,#2)(#3,#4)}{\iiiparpic(#1,#2)(#3,#4)[l]}
|
|
||||||
}
|
|
||||||
\def\iiiparpic(#1,#2)(#3,#4)[#5]{%
|
|
||||||
\@ifnextchar [{\ivparpic(#1,#2)(#3,#4)[#5]}{\ivparpic(#1,#2)(#3,#4)[#5][]}
|
|
||||||
}
|
|
||||||
\def\ivparpic(#1,#2)(#3,#4)[#5][#6]#7{%
|
|
||||||
\let\par=\old@par\par%
|
|
||||||
\hangindent0pt\hangafter1%
|
|
||||||
\setbox\@BILD=\hbox{#7}%
|
|
||||||
\d@breite=#1\d@breite=\the\d@breite%
|
|
||||||
\ifdim\d@breite=0pt\d@breite=\wd\@BILD\fi%
|
|
||||||
\c@breite=\d@breite\divide\c@breite by65536%
|
|
||||||
\multiply\c@piccaption\c@piccaptionpos%
|
|
||||||
\d@hoehe=#2\d@hoehe=\the\d@hoehe%
|
|
||||||
\ifdim\d@hoehe=0pt\d@hoehe=\ht\@BILD\advance\d@hoehe by\dp\@BILD\fi%
|
|
||||||
\c@hoehe=\d@hoehe\divide\c@hoehe by65536%
|
|
||||||
\d@xoff=#3\c@xoff=\d@xoff\divide\c@xoff by65536%
|
|
||||||
\d@yoff=\d@hoehe%
|
|
||||||
\advance\d@yoff by-#4\c@yoff=\d@yoff\divide\c@yoff by65536%
|
|
||||||
\c@pos=1\unitlength1pt%
|
|
||||||
\if@offset%
|
|
||||||
\setbox\@BILD=\hbox{%
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)%
|
|
||||||
\put(0,0){\makebox(\c@breite,\c@hoehe){}}%
|
|
||||||
\put(\c@xoff,\c@yoff){\box\@BILD}%
|
|
||||||
\end{picture}%
|
|
||||||
}%
|
|
||||||
\else%
|
|
||||||
\setbox\@BILD=\hbox{%
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)%
|
|
||||||
\put(0,0){\makebox(\c@breite,\c@hoehe)[#6]{\box\@BILD}}%
|
|
||||||
\end{picture}%
|
|
||||||
}%
|
|
||||||
\fi%
|
|
||||||
\ifnum\c@piccaption=2%
|
|
||||||
\make@piccaption%
|
|
||||||
\advance\d@hoehe\ht\@TEXT\advance\d@hoehe\dp\@TEXT%
|
|
||||||
\c@hoehe=\d@hoehe\divide\c@hoehe by65536%
|
|
||||||
\setbox\@BILD=\vbox{\box\@BILD\vspace{-5pt}%
|
|
||||||
\hbox{\hspace{\fboxsep}\box\@TEXT}%
|
|
||||||
\vspace{4pt}}%
|
|
||||||
\fi%
|
|
||||||
\@tfor\@tempa := #5\do{%
|
|
||||||
\if\@tempa f\setbox\@BILD=\hbox{\Rahmen(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa s\setbox\@BILD=\hbox{\Schatten(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa o\setbox\@BILD=\hbox{\Oval(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa d\setbox\@BILD=\hbox{\Strich(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa x\setbox\@BILD=\hbox{\Kasten(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa l\c@pos=1\fi%
|
|
||||||
\if\@tempa r\c@pos=2\fi%
|
|
||||||
}%
|
|
||||||
\ifnum\c@piccaption=1%
|
|
||||||
\make@piccaption%
|
|
||||||
\advance\d@hoehe\ht\@TEXT\advance\d@hoehe\dp\@TEXT%
|
|
||||||
\c@hoehe=\d@hoehe\divide\c@hoehe by65536%
|
|
||||||
\setbox\@BILD=\vbox{\box\@BILD\vspace{-5pt}\hbox{\box\@TEXT}\vspace{4pt}}%
|
|
||||||
\fi%
|
|
||||||
\ifodd\count0\c@picpos=0\else\c@picpos=\@changemode\fi%
|
|
||||||
\pagetotal=\the\pagetotal%
|
|
||||||
\d@tmp=\pagegoal\advance\d@tmp by-\pagetotal\advance\d@tmp by-\baselineskip%
|
|
||||||
\ifdim\d@hoehe>\d@tmp%
|
|
||||||
\vskip 0pt plus\d@hoehe\relax\pagebreak[3]\vskip 0pt plus-\d@hoehe\relax%
|
|
||||||
\ifnum\c@picpos=1\c@picpos=0\else\c@picpos=\@changemode\fi%
|
|
||||||
\fi%
|
|
||||||
\ifnum\c@picpos=1\ifnum\c@pos=1\c@pos=2\else\c@pos=1\fi\fi%
|
|
||||||
\ifnum\@listdepth>0
|
|
||||||
\@listtrue\parshape 0%
|
|
||||||
\advance\hsize -\rightmargin%
|
|
||||||
\d@leftskip \leftskip%
|
|
||||||
\leftskip \@totalleftmargin%
|
|
||||||
\if@inlabel\rule{\linewidth}{0pt}\vskip-\baselineskip\relax\fi%
|
|
||||||
\else\@listfalse\medskip%
|
|
||||||
\fi%
|
|
||||||
\if@list\d@tmpa=\linewidth\else\d@tmpa=\hsize\fi%
|
|
||||||
\ifnum\c@piccaption=3%
|
|
||||||
\make@piccaption%
|
|
||||||
\d@tmp\ht\@TEXT\advance\d@tmp\dp\@TEXT%
|
|
||||||
\ifdim\d@hoehe>\d@tmp%
|
|
||||||
\setbox\@TEXT=\vbox to\d@hoehe{\vfill\box\@TEXT\vspace{.2\baselineskip}\vfill}%
|
|
||||||
\else%
|
|
||||||
\setbox\@BILD=\vbox to\d@tmp{\vfill\box\@BILD\vfill}%
|
|
||||||
\d@hoehe\d@tmp%
|
|
||||||
\fi%
|
|
||||||
\fi%
|
|
||||||
\ifnum\c@piccaption=4%
|
|
||||||
\make@piccaption%
|
|
||||||
\d@tmp\ht\@TEXT\advance\d@tmp\dp\@TEXT%
|
|
||||||
\setbox\@TEXT=\vbox to\d@hoehe{\vspace{-10pt}\box\@TEXT\vfil}%
|
|
||||||
\advance\d@hoehe-\d@tmp%
|
|
||||||
\fi%
|
|
||||||
\ifnum\c@pos=1\d@tmpa=0pt%
|
|
||||||
\ifnum\c@piccaption>2%
|
|
||||||
\setbox\@BILD=\hbox{\box\@BILD\hspace{\d@pichskip}\hbox{\box\@TEXT}}%
|
|
||||||
\fi%
|
|
||||||
\else\advance\d@tmpa by-\wd\@BILD\d@breite=-\d@breite%
|
|
||||||
\ifnum\c@piccaption>2%
|
|
||||||
\d@tmpa=0pt%
|
|
||||||
\setbox\@BILD=\hbox{\hbox{\box\@TEXT}\hspace{\d@pichskip}\box\@BILD}%
|
|
||||||
\fi%
|
|
||||||
\fi%
|
|
||||||
\p@getot@l\the\pagetotal%
|
|
||||||
\d@bskip\d@hoehe\advance\d@bskip by\parskip\advance\d@bskip by.3\baselineskip%
|
|
||||||
{\noindent\hspace*{\d@tmpa}\relax%
|
|
||||||
\box\@BILD\nopagebreak\vskip-\d@bskip\relax\nopagebreak}%
|
|
||||||
\d@tmp=-\d@hoehe\divide\d@tmp by\baselineskip%
|
|
||||||
\c@zeilen=\d@tmp\advance\c@zeilen by-1%
|
|
||||||
\ifdim\d@breite<0pt\advance\d@breite by-\d@pichskip%
|
|
||||||
\else\advance\d@breite by\d@pichskip%
|
|
||||||
\fi%
|
|
||||||
\hangindent=\d@breite%
|
|
||||||
\hangafter=\c@zeilen%
|
|
||||||
\let\par=\x@par%
|
|
||||||
\ifnum\c@piccaption=3%
|
|
||||||
\hangindent0pt\hangafter1\let\par=\old@par%
|
|
||||||
\vskip\d@hoehe\vskip.2\baselineskip%
|
|
||||||
\fi%
|
|
||||||
\c@piccaption=0%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\newdimen\ptoti
|
|
||||||
\newdimen\ptotii
|
|
||||||
\def\x@par{%
|
|
||||||
\ptoti\pagetotal%
|
|
||||||
\old@par%
|
|
||||||
\ptotii\pagetotal%
|
|
||||||
\ifdim\ptoti=\ptotii%
|
|
||||||
\d@tmp\d@hoehe%
|
|
||||||
\else%
|
|
||||||
\d@tmp\baselineskip%
|
|
||||||
\multiply\d@tmp by\prevgraf%
|
|
||||||
\advance\d@tmp by\parskip%
|
|
||||||
\global\advance\d@hoehe by-\d@tmp\d@tmp=\d@hoehe%
|
|
||||||
\fi%
|
|
||||||
\ifdim\d@hoehe>0pt%
|
|
||||||
\divide\d@tmp by\baselineskip\c@zeilen=-\d@tmp\advance\c@zeilen by-1%
|
|
||||||
\c@zeilen=\the\c@zeilen%
|
|
||||||
\else\c@zeilen=0
|
|
||||||
\fi
|
|
||||||
\ifnum\c@zeilen<0\hangafter=\c@zeilen\hangindent=\d@breite%
|
|
||||||
\else\let\par=\old@par%
|
|
||||||
\hangindent 0pt%
|
|
||||||
\leftskip \d@leftskip%
|
|
||||||
\if@list\parshape \@ne \@totalleftmargin \linewidth%
|
|
||||||
\advance\hsize \rightmargin%
|
|
||||||
\fi%
|
|
||||||
\fi%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
\def\picskip#1{%
|
|
||||||
\let\par=\old@par%
|
|
||||||
\par%
|
|
||||||
\pagetotal\the\pagetotal%
|
|
||||||
\c@tmp=#1\relax%
|
|
||||||
\ifnum\c@tmp=0%
|
|
||||||
\d@tmp\baselineskip\multiply\d@tmp by\prevgraf\advance\d@tmp\parskip%
|
|
||||||
\ifdim\p@getot@l<\pagetotal
|
|
||||||
\advance\d@hoehe by-\d@tmp\advance\d@hoehe by1ex%
|
|
||||||
\ifdim\d@hoehe>0pt\vspace*{\d@hoehe}\fi%
|
|
||||||
\fi%
|
|
||||||
\ifdim\p@getot@l=\pagetotal%
|
|
||||||
\advance\d@hoehe by-\d@tmp\advance\d@hoehe by1ex%
|
|
||||||
\ifdim\d@hoehe>0pt\vspace*{\d@hoehe}\fi%
|
|
||||||
\fi%
|
|
||||||
\else\hangafter=-\c@tmp\hangindent=\d@breite%
|
|
||||||
\fi%
|
|
||||||
\leftskip \d@leftskip%
|
|
||||||
\if@list\parshape \@ne \@totalleftmargin \linewidth%
|
|
||||||
\advance\hsize \rightmargin%
|
|
||||||
\fi%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\def\hpic{%
|
|
||||||
\@ifnextchar ({\ihpic}{\ihpic(0pt,0pt)}
|
|
||||||
}
|
|
||||||
\def\ihpic(#1,#2){%
|
|
||||||
\@ifnextchar ({\@offsettrue\iihpic(#1,#2)}%
|
|
||||||
{\@offsetfalse\iihpic(#1,#2)(0pt,0pt)}
|
|
||||||
}
|
|
||||||
\def\iihpic(#1,#2)(#3,#4){%
|
|
||||||
\@ifnextchar [{\iiihpic(#1,#2)(#3,#4)}{\iiihpic(#1,#2)(#3,#4)[l]}
|
|
||||||
}
|
|
||||||
\def\iiihpic(#1,#2)(#3,#4)[#5]{%
|
|
||||||
\@ifnextchar [{\ivhpic(#1,#2)(#3,#4)[#5]}{\ivhpic(#1,#2)(#3,#4)[#5][]}
|
|
||||||
}
|
|
||||||
\def\ivhpic(#1,#2)(#3,#4)[#5][#6]#7{%
|
|
||||||
\setbox\@BILD=\hbox{#7}%
|
|
||||||
\d@breite=#1\d@breite=\the\d@breite%
|
|
||||||
\ifdim\d@breite=0pt\d@breite=\wd\@BILD\fi%
|
|
||||||
\c@breite=\d@breite\divide\c@breite by65536%
|
|
||||||
\d@hoehe=#2\d@hoehe=\the\d@hoehe%
|
|
||||||
\ifdim\d@hoehe=0pt\d@hoehe=\ht\@BILD\advance\d@hoehe by\dp\@BILD\fi%
|
|
||||||
\c@hoehe=\d@hoehe\divide\c@hoehe by65536%
|
|
||||||
\d@xoff=#3\c@xoff=\d@xoff\divide\c@xoff by65536%
|
|
||||||
\d@yoff=\d@hoehe%
|
|
||||||
\advance\d@yoff by-#4\c@yoff=\d@yoff\divide\c@yoff by65536%
|
|
||||||
\c@pos=0\d@tmpa=\parindent\parindent=0pt\unitlength1pt%
|
|
||||||
\if@offset
|
|
||||||
\setbox\@BILD=\hbox{%
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)%
|
|
||||||
\put(0,0){\makebox(\c@breite,\c@hoehe){}}%
|
|
||||||
\put(\c@xoff,\c@yoff){\box\@BILD}%
|
|
||||||
\end{picture}%
|
|
||||||
}%
|
|
||||||
\else%
|
|
||||||
\setbox\@BILD=\hbox{%
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)%
|
|
||||||
\put(0,0){\makebox(\c@breite,\c@hoehe)[#6]{\box\@BILD}}%
|
|
||||||
\end{picture}%
|
|
||||||
}%
|
|
||||||
\fi%
|
|
||||||
\@tfor\@tempa := #5\do{%
|
|
||||||
\if\@tempa f\setbox\@BILD=\hbox{\Rahmen(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa s\setbox\@BILD=\hbox{\Schatten(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa o\setbox\@BILD=\hbox{\Oval(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa d\setbox\@BILD=\hbox{\Strich(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa x\setbox\@BILD=\hbox{\Kasten(\c@breite,\c@hoehe){\box\@BILD}}\fi%
|
|
||||||
\if\@tempa t\c@pos=1\fi%
|
|
||||||
\if\@tempa b\c@pos=2\fi%
|
|
||||||
}%
|
|
||||||
\ifnum\c@pos=0\parbox{\d@breite}{\makebox[0cm]{}\\\box\@BILD\smallskip}\fi%
|
|
||||||
\ifnum\c@pos=1\parbox[t]{\d@breite}{\makebox[0cm]{}\\\box\@BILD\smallskip}\fi%
|
|
||||||
\ifnum\c@pos=2\parbox[b]{\d@breite}{\makebox[0cm]{}\\\box\@BILD\smallskip}\fi%
|
|
||||||
\parindent=\d@tmpa%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\def\Rahmen(#1,#2)#3{%
|
|
||||||
\c@whole=\@wholewidth\divide\c@whole by65536%
|
|
||||||
\c@half=\@halfwidth\divide\c@half by65536%
|
|
||||||
\c@tmpa=#1\advance\c@tmpa by\c@whole\advance\c@tmpa by\c@whole%
|
|
||||||
\c@tmpb=#2\advance\c@tmpb by\c@whole\advance\c@tmpb by\c@whole%
|
|
||||||
\begin{picture}(\c@tmpa,\c@tmpb)%
|
|
||||||
\put(\c@whole,\c@half){\framebox(#1,#2){#3}}%
|
|
||||||
\end{picture}%
|
|
||||||
\global\advance\d@breite by2\@wholewidth%
|
|
||||||
\global\advance\d@hoehe by2\@wholewidth%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
\def\Schatten(#1,#2)#3{%
|
|
||||||
\c@whole=\@wholewidth\divide\c@whole by65536%
|
|
||||||
\c@half=\@halfwidth\divide\c@half by65536%
|
|
||||||
\c@shad=\d@shad\divide\c@shad by65536%
|
|
||||||
\c@tmp=\c@whole\advance\c@tmp by\c@whole\c@tmpd=\c@tmp%
|
|
||||||
\advance\c@tmp by\c@shad%
|
|
||||||
\advance\c@tmpd by#1%
|
|
||||||
\advance\c@half by\c@shad%
|
|
||||||
\c@tmpa=#1\advance\c@tmpa by\c@tmp%
|
|
||||||
\c@tmpb=#2\advance\c@tmpb by\c@tmp%
|
|
||||||
\begin{picture}(\c@tmpa,\c@tmpb)%
|
|
||||||
\put(\c@whole,\c@half){\framebox(#1,#2){#3}}%
|
|
||||||
\put(\c@shad,0){\rule{\c@tmpd pt}{\c@shad pt}}%
|
|
||||||
\put(\c@tmpd,0){\rule{\c@shad pt}{#2 pt}}%
|
|
||||||
\end{picture}%
|
|
||||||
\global\advance\d@breite by2\@wholewidth\global\advance\d@breite by\d@shad%
|
|
||||||
\global\advance\d@hoehe by2\@wholewidth\global\advance\d@hoehe by\d@shad%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
\def\Oval(#1,#2)#3{%
|
|
||||||
\@wholewidth=0.4pt%
|
|
||||||
\c@tmpa=\the#1\divide\c@tmpa by2%
|
|
||||||
\c@tmpb=\the#2\divide\c@tmpb by2%
|
|
||||||
\begin{picture}(#1,#2)%
|
|
||||||
\put(\c@tmpa,\c@tmpb){\oval(#1,#2)}%
|
|
||||||
\put(0.4,0.4){#3}%
|
|
||||||
\end{picture}%
|
|
||||||
\global\advance\d@breite by1pt\global\advance\d@hoehe by1pt%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
\def\Strich(#1,#2)#3{%
|
|
||||||
\c@whole=\@wholewidth\divide\c@whole by65536%
|
|
||||||
\c@half=\@halfwidth\divide\c@half by65536%
|
|
||||||
\c@dash=\d@dash\divide\c@dash by65536%
|
|
||||||
\c@tmp=\c@whole\advance\c@tmp by\c@whole%
|
|
||||||
\c@tmpa=#1\advance\c@tmpa by\c@tmp%
|
|
||||||
\c@tmpb=#2\advance\c@tmpb by\c@tmp%
|
|
||||||
\c@tmpc=#1\advance\c@tmpc by\c@whole%
|
|
||||||
\c@tmpd=#2\advance\c@tmpd by\c@whole%
|
|
||||||
\begin{picture}(\c@tmpa,\c@tmpb)%
|
|
||||||
\put(\c@half,\c@half){\dashbox{\c@dash}(\c@tmpc,\c@tmpd){#3}}%
|
|
||||||
\end{picture}%
|
|
||||||
\global\advance\d@breite by2\@wholewidth%
|
|
||||||
\global\advance\d@hoehe by2\@wholewidth%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
\def\Kasten(#1,#2)#3{%
|
|
||||||
\@wholewidth=0.4pt%
|
|
||||||
\c@boxl=\d@boxl\divide\c@boxl by65536\c@boxl=\the\c@boxl%
|
|
||||||
\c@tmpa=#1\advance\c@tmpa by\c@boxl%
|
|
||||||
\c@tmpb=#2\advance\c@tmpb by\c@boxl%
|
|
||||||
\c@tmp=#2%
|
|
||||||
\begin{picture}(\c@tmpa,\c@tmpb)%
|
|
||||||
\put(0,\c@boxl){\framebox(#1,#2){#3}}%
|
|
||||||
\put(\c@boxl,0){\line(-1,1){\c@boxl}}%
|
|
||||||
\put(\c@boxl,0){\line(1,0){#1}\line(-1,1){\c@boxl}}%
|
|
||||||
\put(\c@boxl,0){\put(#1,0){\line(0,1){\c@tmp}%
|
|
||||||
\put(0,\c@tmp){\line(-1,1){\c@boxl}}}}%
|
|
||||||
\end{picture}%
|
|
||||||
\global\advance\d@breite by\d@boxl%
|
|
||||||
\global\advance\d@hoehe by\d@boxl%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\newbox\env@box%
|
|
||||||
\newdimen\d@envdp
|
|
||||||
\newcount\c@hsize
|
|
||||||
\newcount\c@envdp
|
|
||||||
\newdimen\d@envb
|
|
||||||
|
|
||||||
\long\def\frameenv{\@ifnextchar [{\@frameenv}{\@frameenv[\textwidth]}}
|
|
||||||
\long\def\@frameenv[#1]{%
|
|
||||||
\hsiz@=\textwidth \textwidth=#1 \d@envb=#1
|
|
||||||
\advance\textwidth by-2\@wholewidth
|
|
||||||
\advance\textwidth by-2\fboxsep
|
|
||||||
\hsize=\textwidth \linewidth=\textwidth
|
|
||||||
\setbox\env@box=\vbox\bgroup}%
|
|
||||||
\def\endframeenv{%
|
|
||||||
\egroup%
|
|
||||||
\hsize=\hsiz@ \textwidth=\hsiz@ \linewidth=\hsiz@
|
|
||||||
\c@breite=\d@envb \divide\c@breite by65536
|
|
||||||
\advance\d@envb by-2\@wholewidth
|
|
||||||
\c@hsize=\d@envb \divide\c@hsize by65536%
|
|
||||||
\d@envdp=\dp\env@box \advance\d@envdp by\ht\env@box%
|
|
||||||
\advance\d@envdp by2\fboxsep%
|
|
||||||
\d@hoehe=\d@envdp \advance\d@hoehe by2\@wholewidth
|
|
||||||
\c@hoehe=\d@hoehe \divide\c@hoehe by65536
|
|
||||||
\c@envdp=\d@envdp \divide\c@envdp by65536%
|
|
||||||
\c@tmp=\@wholewidth \divide\c@tmp by65536
|
|
||||||
\vskip\@wholewidth%
|
|
||||||
\unitlength 1pt\noindent%
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)(0,0)
|
|
||||||
\put(\c@tmp,\c@tmp){\framebox(\c@hsize,\c@envdp){\box\env@box}}
|
|
||||||
\end{picture}%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\long\def\shadowenv{\@ifnextchar [{\@shadowenv}{\@shadowenv[\textwidth]}}
|
|
||||||
\long\def\@shadowenv[#1]{%
|
|
||||||
\hsiz@=\textwidth \textwidth=#1 \d@envb=#1
|
|
||||||
\advance\textwidth by-2\@wholewidth
|
|
||||||
\advance\textwidth by-2\fboxsep
|
|
||||||
\advance\textwidth by-\d@shad%
|
|
||||||
\hsize=\textwidth \linewidth=\textwidth
|
|
||||||
\setbox\env@box=\vbox\bgroup}%
|
|
||||||
\def\endshadowenv{%
|
|
||||||
\egroup
|
|
||||||
\hsize=\hsiz@ \textwidth=\hsiz@ \linewidth=\hsiz@
|
|
||||||
\d@tmpa=\d@envb
|
|
||||||
\c@breite=\d@envb \divide\c@breite by65536
|
|
||||||
\advance\d@envb by-2\@wholewidth \advance\d@envb by-\d@shad
|
|
||||||
\c@hsize=\d@envb \divide\c@hsize by65536%
|
|
||||||
\d@envdp=\dp\env@box \advance\d@envdp by\ht\env@box%
|
|
||||||
\advance\d@envdp by2\fboxsep%
|
|
||||||
\c@envdp=\d@envdp \divide\c@envdp by65536%
|
|
||||||
\d@hoehe=\d@envdp
|
|
||||||
\advance\d@hoehe by2\@wholewidth \advance\d@hoehe by\d@shad
|
|
||||||
\c@hoehe=\d@hoehe \divide\c@hoehe by65536
|
|
||||||
\c@shad =\d@shad \divide\c@shad by65536
|
|
||||||
\c@tmp=\@wholewidth \divide\c@tmp by65536
|
|
||||||
\advance\d@tmpa by-2\d@shad
|
|
||||||
\c@xoff =\d@tmpa \divide\c@xoff by65536
|
|
||||||
\advance\c@xoff by\c@shad \advance\c@xoff by-1
|
|
||||||
\advance\d@envdp by\@wholewidth
|
|
||||||
\vskip\@halfwidth
|
|
||||||
\unitlength 1pt\noindent%
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)(0,0)
|
|
||||||
\put(\c@tmp,\c@shad){\framebox(\c@hsize,\c@envdp){\box\env@box}}
|
|
||||||
\put(\c@shad,0){\rule{\d@tmpa}{\d@shad}}%
|
|
||||||
\put(\c@xoff,0){\rule{\d@shad}{\d@envdp}}%
|
|
||||||
\end{picture}%
|
|
||||||
\vskip\@halfwidth
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
\long\def\dashenv{\@ifnextchar [{\@dashenv}{\@dashenv[\textwidth]}}
|
|
||||||
\long\def\@dashenv[#1]{%
|
|
||||||
\hsiz@=\textwidth \textwidth=#1 \d@envb=#1
|
|
||||||
\advance\textwidth by-2\@wholewidth \advance\textwidth by-2\fboxsep
|
|
||||||
\hsize=\textwidth \linewidth=\textwidth
|
|
||||||
\setbox\env@box=\vbox\bgroup}%
|
|
||||||
\long\def\enddashenv{%
|
|
||||||
\egroup
|
|
||||||
\hsize=\hsiz@ \textwidth=\hsiz@ \linewidth=\hsiz@
|
|
||||||
\c@breite=\d@envb \divide\c@breite by65536
|
|
||||||
\advance\d@envb by-\@wholewidth
|
|
||||||
\c@hsize=\d@envb \divide\c@hsize by65536%
|
|
||||||
\d@envdp=\dp\env@box \advance\d@envdp by\ht\env@box%
|
|
||||||
\advance\d@envdp by2\fboxsep%
|
|
||||||
\advance\d@envdp by\@wholewidth
|
|
||||||
\d@hoehe=\d@envdp \advance\d@hoehe by2\@wholewidth
|
|
||||||
\c@hoehe=\d@hoehe \divide\c@hoehe by65536
|
|
||||||
\c@envdp=\d@envdp \divide\c@envdp by65536%
|
|
||||||
\c@dash=\d@dash \divide\c@dash by65536%
|
|
||||||
\c@whole=\@wholewidth \divide\c@whole by65536
|
|
||||||
\c@half=\@halfwidth \divide\c@half by 65536
|
|
||||||
\noindent\unitlength 1pt
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)(0,0)
|
|
||||||
\put(\c@half,\c@whole){\dashbox{\c@dash}(\c@hsize,\c@envdp){\box\env@box}}
|
|
||||||
\end{picture}%
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
\long\def\ovalenv{\@ifnextchar [{\@ovalenv}{\@ovalenv[\textwidth]}}%
|
|
||||||
\long\def\@ovalenv[#1]{%
|
|
||||||
\hsiz@=\textwidth \textwidth=#1 \d@envb=#1
|
|
||||||
\advance\textwidth by-4\fboxsep
|
|
||||||
\hsize=\textwidth \linewidth=\textwidth
|
|
||||||
\setbox\env@box=\vbox\bgroup}%
|
|
||||||
\long\def\endovalenv{%
|
|
||||||
\egroup
|
|
||||||
\hsize=\hsiz@ \textwidth=\hsiz@ \linewidth=\hsiz@
|
|
||||||
\@wholewidth=0.4pt
|
|
||||||
\c@breite=\d@envb \divide\c@breite by65536
|
|
||||||
\advance\d@envb by-2\@wholewidth
|
|
||||||
\c@hsize=\d@envb \divide\c@hsize by65536%
|
|
||||||
\d@envdp=\dp\env@box \advance\d@envdp by\ht\env@box%
|
|
||||||
\advance\d@envdp by4\fboxsep%
|
|
||||||
\c@envdp=\d@envdp \divide\c@envdp by65536%
|
|
||||||
\d@hoehe=\d@envdp \advance\d@hoehe by2\@wholewidth
|
|
||||||
\c@hoehe=\d@hoehe \divide\c@hoehe by65536
|
|
||||||
\c@tmpa=\c@hsize \divide\c@tmpa by2%
|
|
||||||
\c@tmpb=\c@envdp \divide\c@tmpb by2%
|
|
||||||
\d@tmpa=2\fboxsep \advance\d@tmpa by\@wholewidth
|
|
||||||
\c@xoff=\d@tmpa \divide\c@xoff by65536%
|
|
||||||
\advance\d@tmpa by\dp\env@box
|
|
||||||
\c@yoff=\d@tmpa \divide\c@yoff by65536%
|
|
||||||
\unitlength 1pt\noindent
|
|
||||||
\begin{picture}(\c@breite,\c@hoehe)(0,0)
|
|
||||||
\put(\c@tmpa,\c@tmpb){\oval(\c@hsize,\c@envdp)}
|
|
||||||
\put(\c@xoff,\c@yoff){\box\env@box}%
|
|
||||||
\end{picture}%
|
|
||||||
}
|
|