2023-10-24 21:23:33 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Turing Machine Simulator</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/styles.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<h1>Simponic's State System</h1>
|
2023-10-25 00:28:40 -04:00
|
|
|
<p>Author: Elizabeth Hunt</p>
|
|
|
|
<hr>
|
|
|
|
<p id="turing_state">State: _</p>
|
2023-10-24 21:23:33 -04:00
|
|
|
<div id="tape" class="tape"></div>
|
2023-10-25 00:28:40 -04:00
|
|
|
<div class="controls" id="controls" style="display: none">
|
|
|
|
<button id="next_step">Next Step</button> <button id=
|
|
|
|
"toggle_play">🔁 Begin</button> <button id=
|
|
|
|
"reset">Reset</button><br>
|
|
|
|
</div>
|
|
|
|
<textarea id="instructions">test</textarea>
|
|
|
|
<div>
|
|
|
|
<button id="compile">Compile</button><span style=
|
|
|
|
"margin-left: 0.5rem" id="compile_status"></span>
|
|
|
|
</div>
|
2023-10-24 21:23:33 -04:00
|
|
|
</div>
|
2023-10-25 00:28:40 -04:00
|
|
|
<script src="js/observable.js"></script>
|
|
|
|
<script src="js/turing_machine.js"></script>
|
2023-10-24 21:23:33 -04:00
|
|
|
<script src="js/main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|