-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
35 lines (34 loc) · 866 Bytes
/
index.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
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8"/>
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
<title>Console</title>
<meta name="description" content=""/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style>
body{
white-space: pre;
font-family: monospace;
font-size: 0.95em;
letter-spacing: 0.015em;
}
</style>
<script>
var Module = {
'arguments': ['decompile','bin/axe.vmdl_c','dump/s2rd.txt'],
'print': function(x){
document.body.insertAdjacentHTML('beforeend',x+'\n');
},
//'printErr': function(x){
// document.body.insertAdjacentHTML('beforeend',x+'\n');
//},
'setStatus': function(x){
console.log(x);
}
};
</script>
<script src="s2rd.js"></script>
</head>
<body></body>
</html>