hardcoded date to the date of last text change
authorfrief <frief@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 15 May 2005 19:05:52 +0000 (19:05 +0000)
committerfrief <frief@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 15 May 2005 19:05:52 +0000 (19:05 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3759 4a8a32a2-be11-0410-ad9d-d568d2c75423

doc/cdbfileformat.lyx
doc/test_suite_spec.lyx

index 480432d63600ecb09042f55742a81c2c30677b25..7281b5d46eae8bb82f7c42a8ed1870e365704ffb 100644 (file)
@@ -3,6 +3,12 @@
 \textclass article
 \begin_preamble
 \pdfoptionpdfminorversion=3
+\usepackage[
+  pdftitle={CDB File Format},
+  pdfauthor={Lenny Story},
+  pdfkeywords={address c compiler debugger format GPL linker record SDCC},
+  colorlinks=true,
+  linkcolor=blue] {hyperref}
 \end_preamble
 \language english
 \inputencoding auto
 \layout Title
 
 CDB File Format
+\begin_inset ERT
+status Open
+
+\layout Standard
+
+\backslash 
+date{2003-03-21}
+\end_inset 
+
+
 \layout Author
 
 Lenny Story
index bbe50f17d3800946c0088efaad1bd45be4adbb2b..bebe463f94f156df8e9d124e635a581a8dcfcd2e 100644 (file)
@@ -3,7 +3,12 @@
 \textclass article
 \begin_preamble
 \pdfoptionpdfminorversion=3
-\usepackage{url}
+\usepackage[
+  pdftitle={Proposed Test Suite Design},
+  pdfauthor={Michael Hope},
+  pdfkeywords={c case compiler framework GPL regression SDCC suite test},
+  colorlinks=true,
+  linkcolor=blue] {hyperref}
 \end_preamble
 \language english
 \inputencoding auto
 \layout Title
 
 Proposed Test Suite Design
-\layout Author
-
-Michael Hope (michaelh@juju.net.nz)
-\layout Date
-
-
 \begin_inset ERT
-status Collapsed
+status Open
 
 \layout Standard
 
 \backslash 
-today{}
+date{2001-07-13}
 \end_inset 
 
 
+\layout Author
+
+Michael Hope (michaelh @ juju.net.nz)
 \layout Abstract
 
 This article describes the goals, requirements, and suggested specification
@@ -480,31 +482,29 @@ I don't know how to do pre-formatted text in LaTeX.
 The following code generates a simple increment test for all combinations
  of the storage classes and all combinations of the data sizes.
  This is a bad example as the optimiser will often remove most of this code.
-\layout Standard
+\newline 
+
+\layout Verse
 
 
 \family typewriter 
 /** Test for increment.
  
-\layout Standard
-
-
-\family typewriter 
+\newline 
+\SpecialChar ~
+\SpecialChar ~
 type: char, int, long
-\layout Standard
-
-
-\family typewriter 
+\newline 
+\SpecialChar ~
+\SpecialChar ~
 Z80 port does not fully support longs (4 byte)
-\layout Standard
-
-
-\family typewriter 
+\newline 
+\SpecialChar ~
+\SpecialChar ~
 type[z80]: char, int
-\layout Standard
-
-
-\family typewriter 
+\newline 
+\SpecialChar ~
+\SpecialChar ~
 class: 
 \begin_inset Quotes eld
 \end_inset 
@@ -514,39 +514,26 @@ class:
 \end_inset 
 
 , register, static */
-\layout Standard
-
-
-\family typewriter 
+\newline 
+\newline 
 static void
-\layout Standard
-
-
-\family typewriter 
+\newline 
 testInc{class}{types}(void)
-\layout Standard
-
-
-\family typewriter 
-{
-\layout Standard
-
-
-\family typewriter 
+\newline 
+{ 
+\newline 
+\SpecialChar ~
+\SpecialChar ~
 {class} {type} i = 0; 
-\layout Standard
-
-
-\family typewriter 
+\newline 
+\SpecialChar ~
+\SpecialChar ~
 i = i + 1;
-\layout Standard
-
-
-\family typewriter 
+\newline 
+\SpecialChar ~
+\SpecialChar ~
 ASSERT((i == 1));
-\layout Standard
-
-
-\family typewriter 
+\newline 
 }
 \the_end