Basilio/index.html

18 lines
631 B
HTML
Raw Normal View History

2015-01-22 18:44:52 +00:00
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
2015-01-23 19:46:23 +00:00
<title>Basilio</title>
<link href="style.css" rel="stylesheet" type="text/css" />
2015-01-22 21:32:46 +00:00
<script type="text/javascript" src="js/Byte.js"></script>
2015-01-23 19:46:23 +00:00
<script type="text/javascript" src="js/LCD.js"></script>
<script type="text/javascript" src="js/Memory.js"></script>
2015-01-25 20:06:11 +00:00
<script type="text/javascript" src="js/Registers.js"></script>
2015-01-22 21:32:46 +00:00
<script type="text/javascript" src="js/TI.js"></script>
2015-01-25 20:06:11 +00:00
<script type="text/javascript" src="js/ops/0x0.js"></script>
2015-01-22 18:44:52 +00:00
</head>
2015-01-22 21:32:46 +00:00
<body onload="TI.Init();">
2015-01-23 19:46:23 +00:00
<table id="lcd" border="0">
</table>
2015-01-22 18:44:52 +00:00
</body>
</html>