blob: 75c20ed62d5a2cee7801bd2bad4c5b5044a61293 (
plain)
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
|
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>CF2 binary patcher</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<link rel="stylesheet" href="https://microsoft.github.io/uf2/assets/css/style.css">
<script src="patcher.js"></script>
<script src="web.js"></script>
<style>
#patch {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-size: 0.9rem;
width: 100%;
height: 12em;
}
.page-header {
padding: 2rem 2rem !important;
}
.btn-dl,
.btn-dl:hover {
background-color: green;
float: right;
color: white;
}
footer {
text-align: center;
margin-top: 5em;
}
footer a {
margin-right: 2em;
}
</style>
</head>
<body ondrop="dropHandler(event);" ondragover="dragOverHandler(event);">
<section class="page-header">
<h1 class="project-name">CF2 patcher</h1>
</section>
<section class="main-content">
<h2>Your patch</h2>
<textarea id="patch" spellcheck=false onchange="savePatch(event);"></textarea>
<a href="#" id="apply" class="btn btn-dl">Apply my patch</a>
<h2>Information</h2>
<pre><code id="currconfig">Drop UF2 or BIN file above to see its config.</code></pre>
<p>
<a href="https://github.com/Microsoft/uf2/blob/master/cf2.md">Learn more</a>
or
<a href="#" onclick="defines()">download configkeys.h</a>.
</p>
<p>
<a href="#" id="rnd">Generate random number</a>
<span id="rnd-res"></span>
</p>
<footer>
<a href="https://makecode.com/privacy" target="_blank" rel="noopener">Privacy & Cookies</a>
<a href="https://makecode.com/termsofuse" target="_blank" rel="noopener"> Terms Of Use</a>
<a href="https://makecode.com/trademarks" target="_blank" rel="noopener">Trademarks</a>
<span>© 2019 Microsoft</span>
</footer>
</section>
<script>
restorePatch()
</script>
</body>
</html>
|