-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
22 lines (22 loc) · 994 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<meta name="viewport" content="width=768,initial-scale=0.5">
<title>opv86</title>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link href="opv86.css" rel="stylesheet">
</head>
<body>
<h1>opv86 <small>Opcode/Instruction finder for x86_64</small></h1>
<div id="site-info" class="opv86-site-info"><a href="https://github.com/hikalium/opv86">GitHub: hikalium/opv86</a></div>
<input id="filter-value" class="opv86-main-hex-input" type="text" placeholder="Filter with opcode, instr..." autofocus>
<div id="decoder-output">
<h4 id="decoder-output-header">Decoder output (experimental)</h4>
<div id="decoder-output-bin"></div>
</div>
<div id="oplist2"></div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="gen/opv86.js"></script>
</html>