tab.tex 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. \documentclass{article}
  2. \usepackage{a4}
  3. \setlength{\oddsidemargin}{20pt}
  4. \addtolength{\textwidth}{39pt}
  5. \newcommand{\var}[1]{{\texttt #1}}
  6. \usepackage{tabularx}
  7. \begin{document}
  8. \begin{table}
  9. \caption[b]{Local compiler switches.}
  10. \begin{tabularx}{\textwidth}{llX}
  11. \textbf {short} & \textbf {long} & \textbf{explanation }\\ \hline
  12. \var{\$A} & \var{\$ALIGN} & Align Data.\\
  13. & \var{\$ASMMODE} & Select assembler mode. \\
  14. \var{\$B} & \var{\$BOOLEVAL} & Use complete boolean evaluation. \\
  15. \var{\$C} & \var{\$ASSERTIONS} & Enable assertion support. \\
  16. & \var{\$DEFINE} & Define a symbol. \\
  17. & \var{\$ELSE} & Switch conditional compilation. \\
  18. & \var{\$ENDIF} & End conditional compilation. \\
  19. & \var{\$ERROR} & Generate error message. \\
  20. \var{\$F} & & Use far or near functions. \\
  21. & \var{\$FATAL} & Generate fatal error message. \\
  22. & \var{\$GOTO} & Support \var{Goto} and \var{Label}. \\
  23. \var{\$H} & \var{\$LONGSTRINGS} & Use AnsiStrings. \\
  24. & \var{\$HINT} & Generate hint message. \\
  25. & \var{\$HINTS} & Emit hints \\
  26. & \var{\$IF} & Start conditional compilation. \\
  27. & \var{\$IFDEF} & Start conditional compilation. \\
  28. & \var{\$IFNDEF} & Start conditional compilation. \\
  29. & \var{\$IFOPT} & Start conditional compilation. \\
  30. & \var{\$INFO} & Generate info message. \\
  31. & \var{\$INLINE} & Enable inline code support. \\
  32. \var{\$I} & \var{\$IOCHECKS} & Include Input/Output checking. \\
  33. \var{\$I} & \var{\$INCLUDE} & Include file. \\
  34. \var{\$I} & \var{\$INCLUDE} & Include compiler info. \\
  35. \var{\$L} & \var{\$LINK} & Link object file. \\
  36. & \var{\$LINKLIB} & Link to a library. \\
  37. \var{\$M} & \var{\$TYPEINFO} & Generate Run-Time type information. \\
  38. & \var{\$MACRO} & Enable macro support. \\
  39. & \var{\$MESSAGE} & Generate info message. \\
  40. & \var{\$MMX} & Enable Intel MMX support. \\
  41. & \var{\$NOTE} & Generate note message. \\
  42. & \var{\$NOTES} & Emit notes. \\
  43. & \var{\$OUTPUT\_FORMAT} & Select compiler output format. \\
  44. \var{\$P} & \var{\$OPENSTRINGS} & Use open strings. \\
  45. & \var{\$PACKENUM} & Specify minimum enumeration type size. \\
  46. & \var{\$PACKRECORDS} & Specify Alignment of record elements. \\
  47. \var{\$Q} & \var{\$OVERFLOWCHECKS}& Use overflow checking. \\
  48. \var{\$R} & \var{\$RANGECHECKS} & Use range checking. \\
  49. & \var{\$SATURATION} & Enable saturation operations. \\
  50. & \var{\$SMARTLINK} & Use smartlinking. \\
  51. & \var{\$STATIC} & Enable use of \var{Static} keyword. \\
  52. & \var{\$STOP} & Generate fatal error message. \\
  53. \var{\$T} & \var{\$TYPEDADDRESS} & Enable typed address operator. \\
  54. & \var{\$UNDEF} & Undefine a symbol. \\
  55. \var{\$V} & \var{\$VARSTRINGCHECKS} & Use strict var-string checking. \\
  56. & \var{\$WAIT} & Wait for enter key press. \\
  57. & \var{\$WARNING} & Generate warning message. \\
  58. & \var{\$WARNINGS} & Emit warnings. \\
  59. \var{\$X} & \var{\$EXTENDEDSYNTAX} & Enable use of extended syntax. \\ \hline
  60. \end{tabularx}
  61. \end{table}
  62. \begin{table}
  63. \caption{Global compiler swicthes}
  64. \begin{tabularx}{\textwidth}{llX}
  65. \textbf {short} & \textbf {long} & \textbf{explanation }\\ \hline
  66. & \var{\$APPTYPE} & Specify type of application (Win32 only) \\
  67. \var{\$D} & \var{\$DEBUGINFO} & Include debugging symbols. \\
  68. & \var{\$DESCRIPTION} & Not supported. \\
  69. \var{\$E} & & Enable emulation of coprocessor. \\
  70. & \var{\$G} & Generate 80286 code. \\
  71. & \var{\$INCLUDEPATH} & Specify include file search path. \\
  72. \var{\$L} & \var{\$LOCALSYMBOLS} & Enable local symbol information. \\
  73. & \var{\$LIBRARYPATH} & Specify library search path. \\
  74. \var{\$M} & \var{\$MEMORY} & Specify memory sizes. \\
  75. & \var{\$MODE} & Specify compiler compatibility mode. \\
  76. & \var{\$N} & Enable numeric processing. \\
  77. & \var{\$O} & Enable overlay code generation. \\
  78. & \var{\$OBJECTPATH} & Specify object file search path. \\
  79. \var{\$S} & & Use stack checking \\
  80. & \var{\$UNITPATH} & Specify unit file search path. \\
  81. \var{\$W} & \var{\$STACKFRAMES} & Generate stackframes. \\
  82. \var{\$Y} & \var{\$REFERENCEINFO} & Insert browser information. \\ \hline
  83. \end{tabularx}
  84. \end{table}
  85. \end{document}