<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="expires" content="0">
<title>CIS 700-2: Integration of Embedded-System Components: Principles and Practice</title>
<link rel="stylesheet" type="text/css" href="../style.css">
</head>
<body>
<center>
<h2>CIS 700-2: Integration of Embedded-System Components: <br>
Principles and Practice</h2>

<hr width="50%" align="center">
<a href="../index.html">Home</a> | Reading List | <a href="../lectures.html">Lectures</a><br>
<hr width="50%" align="center">
</center>

<br>
<center><h4>Reading List</h4></center>
<hr>

<? 
$bibtex="/rtg/aarone/bin/bibtex2html";
$pref=`pwd`;

$files = array( "middleware.html",
		"softwarearch.html",
		"test.html",
		"rv.html",
		"component.html", 
		"realtime-os.html",
		"security.html"
                                );

foreach ($files as $file) {
        $name = $file;
        $fp = fopen($name, "r");
        $html = fread($fp, filesize($file));

        $ret = preg_match("/<table>(.*)<\/table>/sxi", $html, $matches);

        switch($file) {
                case "middleware.html":
                print "<h4>Adaptive Middleware</h4>";
                break;
                case "softwarearch.html":
                print "<h4>Software Architecture Overview</h4>";
                break;
                case "test.html":
                print "<h4>Testing</h4>";
                break;
                case "rv.html":
                print "<h4>Runtime Verification</h4>";
                break;
                case "component.html":
                print "<h4>Component-based Design/Development for Embedded Systems</h4>";
                break;
                case "realtime-os.html":
                print "<h4>Real-Time Operating Systems</h4>";
                break;
                case "security.html":
                print "<h4>Verification on Security Policies</h4>";
                break;
        }
        print "<table class=\"reference\">\n";
        print $matches[1];
        print "</table>\n";
    print "<hr>\n";
        print "\n<br><br>\n";
}

?>






</body>
</html>



