From 37b98e547f1ab544502f2c1347bc0fdf55bae9b4 Mon Sep 17 00:00:00 2001 From: Christian Dietrich Date: Fri, 10 Oct 2014 12:23:32 +0200 Subject: [PATCH] Added copyright notices in the implementation files --- Makefile | 8 ++++---- tex/latex/avremu/avr.binary.tex | 12 ++++++++++++ tex/latex/avremu/avr.bitops.tex | 12 ++++++++++++ tex/latex/avremu/avr.draw.tex | 12 ++++++++++++ tex/latex/avremu/avr.instr.tex | 12 ++++++++++++ tex/latex/avremu/avr.io.tex | 12 ++++++++++++ tex/latex/avremu/avr.memory.tex | 12 ++++++++++++ tex/latex/avremu/avr.numbers.tex | 13 +++++++++++++ tex/latex/avremu/avr.testsuite.tex | 13 +++++++++++++ tex/latex/avremu/avremu.sty | 13 +++++++++++++ 10 files changed, 115 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2122e8c..710cba9 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,8 @@ test-simple: source/simple-testsuite.tex test-%: source/test-suite/%.c cd source/test-suite; ./test-suite single $(shell basename $<) -avremu.zip: source/avremu.pdf - rm -rf avremu avremu.zip +avremu.tds.zip: source/avremu.pdf + rm -rf avremu avremu.tds.zip mkdir avremu # TeX Directory mkdir -p avremu/tex/latex/avremu @@ -32,8 +32,8 @@ avremu.zip: source/avremu.pdf mkdir -p avremu/doc/latex/avremu cp source/avremu.pdf avremu/doc/latex/avremu cp README.md avremu/doc/latex/avremu/README - cd avremu; zip -r ../avremu.zip * + cd avremu; zip -r ../avremu.tds.zip * rm -rf avremu -.PHONY: test-simple source/avremu.pdf avremu.zip +.PHONY: test-simple source/avremu.pdf avremu.tds.zip diff --git a/tex/latex/avremu/avr.binary.tex b/tex/latex/avremu/avr.binary.tex index 99024ca..36888c5 100644 --- a/tex/latex/avremu/avr.binary.tex +++ b/tex/latex/avremu/avr.binary.tex @@ -1,3 +1,15 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. % % This interacts with the avr-gcc and provides a loader for ihex files % diff --git a/tex/latex/avremu/avr.bitops.tex b/tex/latex/avremu/avr.bitops.tex index 4c5f0b9..dcec2ae 100644 --- a/tex/latex/avremu/avr.bitops.tex +++ b/tex/latex/avremu/avr.bitops.tex @@ -1,3 +1,15 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. % % This file contains the basic binary operations % diff --git a/tex/latex/avremu/avr.draw.tex b/tex/latex/avremu/avr.draw.tex index 6706c69..5a2a780 100644 --- a/tex/latex/avremu/avr.draw.tex +++ b/tex/latex/avremu/avr.draw.tex @@ -1,3 +1,15 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. % % This library can be used to draw graphics through IO ports % diff --git a/tex/latex/avremu/avr.instr.tex b/tex/latex/avremu/avr.instr.tex index 87427b7..b76fcad 100644 --- a/tex/latex/avremu/avr.instr.tex +++ b/tex/latex/avremu/avr.instr.tex @@ -1,3 +1,15 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. % % This file contains all opcode implementations % diff --git a/tex/latex/avremu/avr.io.tex b/tex/latex/avremu/avr.io.tex index a76becf..c89f9d5 100644 --- a/tex/latex/avremu/avr.io.tex +++ b/tex/latex/avremu/avr.io.tex @@ -1,3 +1,15 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. %% %% The IO Subsystem %% diff --git a/tex/latex/avremu/avr.memory.tex b/tex/latex/avremu/avr.memory.tex index f93a948..92f3e34 100644 --- a/tex/latex/avremu/avr.memory.tex +++ b/tex/latex/avremu/avr.memory.tex @@ -1,3 +1,15 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. % % The IO subsystem % diff --git a/tex/latex/avremu/avr.numbers.tex b/tex/latex/avremu/avr.numbers.tex index ef8c572..faa5da2 100644 --- a/tex/latex/avremu/avr.numbers.tex +++ b/tex/latex/avremu/avr.numbers.tex @@ -1,3 +1,16 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. + \def\avr@bindec@addmap#1#2{% \csdef{avr@bin@#1}{#2}% \csdef{avr@dec@#2}{#1}% diff --git a/tex/latex/avremu/avr.testsuite.tex b/tex/latex/avremu/avr.testsuite.tex index 87f8976..d1e96f6 100644 --- a/tex/latex/avremu/avr.testsuite.tex +++ b/tex/latex/avremu/avr.testsuite.tex @@ -1,3 +1,16 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. + %% These Functions are used within the test-suite \def\avr@test@setup#1{% \typeout{---- Test: #1 ----}% diff --git a/tex/latex/avremu/avremu.sty b/tex/latex/avremu/avremu.sty index cf002e1..31c80b4 100644 --- a/tex/latex/avremu/avremu.sty +++ b/tex/latex/avremu/avremu.sty @@ -1,3 +1,16 @@ +%% Copyright (C) 2014 Christian Dietrich +%% ------------------------------------------------------- +%% +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3c of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of LaTeX +%% version 2008/05/04 or later. + \NeedsTeXFormat{LaTeX2e}[1999/12/01] \ProvidesPackage{avremu} [2014/10/09 v0.1 avremu] \RequirePackage{etoolbox}