-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdebugger.html
84 lines (68 loc) · 1.2 KB
/
debugger.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<title>retrowin32</title>
<link rel='stylesheet' href='win2k.css'>
<style>
a.stealth {
color: inherit;
text-decoration: none;
}
code {
white-space: pre-wrap;
}
html {
height: 100%;
overflow: hidden;
display: flex;
}
body {
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
}
section.panel {
padding: 1ex;
}
/* memory */
.grid span {
margin-right: 0.5ch;
}
.grid span:nth-child(4n) {
margin-right: 1ch;
}
.grid span:last-child {
margin-right: 0;
}
.highlight {
background: white;
outline: solid 1px red;
}
.error {
color: red;
}
.code {
padding: 1ex;
background: white;
width: 80ex;
}
table {
border-spacing: 0;
}
td {
vertical-align: top;
padding: 0;
}
.tabs-strip {
padding-bottom: 1ex;
}
button.x {
padding: 1px 3px;
font-size: 80%;
}
</style>
<body>
</body>
<script type='module'>
import { debuggerMain } from './bundle.js';
debuggerMain();
</script>