fixed tiny flaw in tghe documentation +
* made improvements to documentation Makefile * removed unneccessary .gitignore
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
SVGS= $(wildcard figures/*.svg)
|
||||
IMGS= $(SVGS:.svg=.pdf)
|
||||
|
||||
PDFDIR=obj
|
||||
SRCS= $(wildcard *.tex)
|
||||
#SRCS+= refs3.bib
|
||||
PDFFLAGS= -interaction=nonstopmode -shell-escape -halt-on-error -synctex=1 -output-directory=$(PDFDIR)/
|
||||
|
||||
docu=soc
|
||||
TARGET=$(addsuffix .pdf,$(docu))
|
||||
@@ -17,11 +19,13 @@ figures/%.pdf: figures/%.svg
|
||||
inkscape -z -T -A $@ $<
|
||||
|
||||
%.pdf: %.tex $(SRCS) $(IMGS)
|
||||
pdflatex -jobname=$(basename $@) -synctex=1 -interaction=nonstopmode -shell-escape $<
|
||||
pdflatex -jobname=$(basename $@) -synctex=1 -interaction=nonstopmode -shell-escape $<
|
||||
mkdir -p $(PDFDIR)
|
||||
pdflatex $(PDFFLAGS) -jobname=$(notdir $(basename $@)) $<
|
||||
pdflatex $(PDFFLAGS) -jobname=$(notdir $(basename $@)) $<
|
||||
cp -p -f $(PDFDIR)/$@ $@
|
||||
|
||||
## Other Targets
|
||||
clean:
|
||||
rm -f $(IMGS) *.aux *.log *.dvi *.pdf *.ps *.pyg *.toc *.loc *.lot *.out *.lof *.lol *.synctex.gz
|
||||
rm -fr $(PDFDIR) $(IMGS) $(TARGET)
|
||||
|
||||
.PHONY: all clean
|
||||
.PHONY: all target images clean
|
||||
|
||||
@@ -186,7 +186,7 @@ The following instructions are supported:
|
||||
{1100 010c iiii iiii}
|
||||
{br imm\\br always/true imm}
|
||||
{Sets the program counter to PC+imm, where imm is treated as signed number. For details about the branch delay slot see section \ref{sec:branchdelayslot}. If c==1, the branch is conditional and performed only, if the truth flag is set.}
|
||||
{if ((c==0) \logicor (T==1)) goto (PC+imm);}
|
||||
{if ((c==0) \logicor (T==1)) goto (PC+imm$<<$1);}
|
||||
{No flag is updated}
|
||||
|
||||
\instruction{Branch to Register}{brr}
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
\usepackage{multirow}
|
||||
\usepackage{array}
|
||||
|
||||
\usepackage{minted}
|
||||
\usepackage[outputdir=obj]{minted}
|
||||
\usepackage{newfloat}
|
||||
\usepackage{xspace}
|
||||
%! put the new-command after the inputenc package use, so 'ü' will not be shown as abomination ASCII -TF
|
||||
|
||||
37
projects/lt16lab/.gitignore
vendored
37
projects/lt16lab/.gitignore
vendored
@@ -1,37 +0,0 @@
|
||||
### TEX Temps
|
||||
*.out
|
||||
*.toc
|
||||
*.aux
|
||||
*.log
|
||||
*.pdf
|
||||
*.synctex.gz
|
||||
*.lof
|
||||
*.lot
|
||||
*.lol
|
||||
*.dvi
|
||||
*.bbl
|
||||
*.ps
|
||||
*.blg
|
||||
*.loc
|
||||
*.pyg
|
||||
|
||||
### Other Files
|
||||
*~
|
||||
*.kate-swp
|
||||
*.patch
|
||||
*.orig
|
||||
|
||||
### Assembler Eclipse Stuff
|
||||
assembler/.cproject
|
||||
assembler/.project
|
||||
assembler/.settings/org.eclipse.cdt.managedbuilder.core.prefs
|
||||
|
||||
### Assembler Project Compiles
|
||||
assembler/obj/*
|
||||
assembler/asm
|
||||
assembler/test.ram
|
||||
assembler/test.map
|
||||
|
||||
### test program files
|
||||
*.ram
|
||||
*.map
|
||||
Reference in New Issue
Block a user