-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
20 lines (20 loc) · 812 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Assembler Simulator</title>
<meta
name="description"
content="The Assembler Simulator is an 8-bit CPU simulation tool that utilizes the Samphire sms32v50 Microprocessor Simulator instruction set." />
<meta name="theme-color" content="#ffffff" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.gstatic.com" />
</head>
<body>
<div id="app-root"></div>
<div id="modal-root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>