mirror of https://github.com/VLSIDA/OpenRAM.git
109 lines
3.6 KiB
TeX
109 lines
3.6 KiB
TeX
% The % is a comment. This file is an Example LaTeX document for GP111
|
|
\documentclass[11pt]{article}
|
|
\usepackage{times} % LaTeX 2e
|
|
\usepackage{graphicx}
|
|
\usepackage{epstopdf}
|
|
%\usepackage{subfigure}
|
|
\usepackage[colorlinks=true]{hyperref}
|
|
%\usepackage[doublespacing]{setspace}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% Generic Shared across papers Keywords
|
|
|
|
\newcommand{\fixme}[1]{{\Large FIXME:} {\bf #1}}
|
|
\newcommand{\note}[1]{{\bf Note:} \{\uline{#1}\}\\}
|
|
|
|
% create some additional spacing between paragraphs.
|
|
\setlength{\parskip}{7pt}
|
|
% Default margins are too wide all the way around. I reset them here.
|
|
\setlength{\topmargin}{-.5in}
|
|
\setlength{\textheight}{9in}
|
|
\setlength{\oddsidemargin}{.125in}
|
|
\setlength{\textwidth}{6.25in}
|
|
|
|
\begin{document}
|
|
|
|
\title{OpenRAM Manual}
|
|
\author{Matthew R. Guthaus - mrg@ucsc.edu\\
|
|
and many others
|
|
}
|
|
%\renewcommand{\today}{October 14, 2010}
|
|
\maketitle
|
|
\newpage
|
|
\section{License}
|
|
|
|
\begin{verbatim}
|
|
Copyright 2018 Regents of the University of California and The Board
|
|
of Regents for the Oklahoma Agricultural and Mechanical College
|
|
(acting for and on behalf of Oklahoma State University)
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. Neither the name of the copyright holder nor the names of its
|
|
contributors may be used to endorse or promote products derived from
|
|
this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
\end{verbatim}
|
|
|
|
|
|
\newpage
|
|
\setcounter{tocdepth}{2}
|
|
\tableofcontents
|
|
|
|
\newpage
|
|
|
|
% Each chapter description
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{intro}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{overview}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{modules}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{implementation}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{parameterized}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{porting}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{timing}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{unittests}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\input{debug}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%\input{conclusions}
|
|
\input{gdsmill}
|
|
|
|
|
|
\end{document}
|