Files
scummvm-web/docs/specs/index.php
T
Eugene Sandulenko e388aee8d1 OLDWEB: More fixes
2016-04-09 15:11:23 +02:00

47 lines
1.5 KiB
PHP

<?php
$file_root = "../..";
// load libs
require($file_root."/include/"."incl.php");
// start of html
html_header("The inComplete SCUMM Reference Guide", '<link href="specs.css" rel="stylesheet" type="text/css">');
sidebar_start(true);
// add
//display welcome table
echo html_round_frame_start("The inComplete SCUMM Reference Guide","");
?>
<p>
<big><b>The inComplete SCUMM Reference Guide</b></big><br>
<?php echo html_line(); ?>
</p>
<p>
<i>being a Partially Complete and Mostly Accurate guide to the SCUMM Engine data file Format for Versions Five and Six (and above)</i>
<ul>
<li><?php echo html_ahref("Introduction", $file_root."/docs/specs/"."introduction.php"); ?></li>
<li><?php echo html_ahref("CHAR", $file_root."/docs/specs/"."char.php"); ?></li>
<li><?php echo html_ahref("AARY", $file_root."/docs/specs/"."aary.php"); ?></li>
<li><?php echo html_ahref("SCRP", $file_root."/docs/specs/"."scrp.php"); ?></li>
<li><?php echo html_ahref("V5 opcode list", $file_root."/docs/specs/"."scrp-v5.php"); ?></li>
<li><?php echo html_ahref("V6 opcode list", $file_root."/docs/specs/"."scrp-v6.php"); ?></li>
<li><?php echo html_ahref("Glossary", $file_root."/docs/specs/"."glossary.php"); ?></li>
</ul>
<HR><P STYLE="font-size: smaller; text-align: center">
All material &copy; 2000-2002 David Given, unless where stated otherwise.
</P>
<?php
echo html_round_frame_end("&nbsp;");
// end of html
sidebar_end();
html_footer();
?>