1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| <html>
<head>
<title>PROJECT G</title>
<meta http-equiv="refresh" content="1">
<style type="text/css">
td, th {border-right: 1px solid #000000;}
th {border-botom: 1px solid #000000;}
</style>
</head>
<body>
<script type="text/javascript">
dateheure = new Date();
document.write("Nous sommes le "+dateheure.getDate()+"/"+(dateheure.getMonth()+1)+"/"+dateheure.getFullYear()+"<br>"); document.write("et il est actuellement "+dateheure.getHours()+"H"
+dateheure.getMinutes()+"#"+dateheure.getSeconds()+"s");
</script>
<p>Content of Shared RAM:</p>
<table cellpadding='5' cellspacing='0'>
<tr>
<th>%nbsp;</th>
<th>Output as Integer</th>
<th>Output as hexadecimal number</th>
</tr>
<tr>
<td>4*1 Byte:</td>
<td>°v1000° °v1001° °v1002° °v1003° °v1004° °v1005° °v1006° °v1007°</td>
<td>°v1000~%x° °v1001~%x° °v1002~%x° °v1003~%x° °v1004~%x° °v1005~%x° °v1006~%x° °v1007~%x°</td>
</tr>
<tr>
<td>°v2000° °v2002° °v2004° °v2006°</td>
<td>°v2000~%x° °v2002~%x° °v2004~%x° °v2006~%x°</td>
</tr>
<tr>
<td>°v3000° °v3004°</td>
<td>°v3000~%x° °v3004~%x°</td>
</tr>
</table><br>
Output as text:<br>
°v1000~%c° °v1001~%c° °v1002~%c° °v1003~%c° °v1004~%c° °v1005~%c° °v1006~%c° °v1007~%c°<br>
<br>
output multiple bytes (8x1): °V1000~8°<br>
output multiple bytes (4x2): °V2000~4°<br>
output multiple bytes (2x4): °V3000~2°<br>
</body>
</html> |
Partager