From e40ff268e7442cfebcc00ecc993610bf6b05eb26 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Mon, 25 Feb 2019 16:38:46 -0500 Subject: Adds Readme and Licence info --- LICENSE | 22 ++++++++++++++++++++++ README.txt | 11 +++++++++++ circuit.pic | 22 ++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 LICENSE create mode 100644 README.txt diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e020c6e --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2019 Tucker Evans + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..6973540 --- /dev/null +++ b/README.txt @@ -0,0 +1,11 @@ +Pic Circuits +============ + +This is a set of macros for the pic language designed to draw circuit +diagrams, It is by no means complete as I have merely added elements +as I've needed them. + +You can include this into a file like so: + .PS + copy "circuit.pic" + .PE diff --git a/circuit.pic b/circuit.pic index 9788947..92cf7e9 100644 --- a/circuit.pic +++ b/circuit.pic @@ -4,7 +4,29 @@ # copy "circuit.pic" # .PE # +# MIT License +# # Copyright (c) 2019 Tucker Evans +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation files +# (the "Software"), to deal in the Software without restriction, +# including without limitation the rights to use, copy, modify, merge, +# publish, distribute, sublicense, and/or sell copies of the Software, +# and to permit persons to whom the Software is furnished to do so, +# subject to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. text_up = 0.175 text_down = 0.2 -- cgit v1.1