-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemulation.html
More file actions
171 lines (131 loc) · 5.25 KB
/
Copy pathemulation.html
File metadata and controls
171 lines (131 loc) · 5.25 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<html>
<head>
<script type="text/javascript" src="javascript\jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="javascript\jquery.tablesorter.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Ultimate Computer Wiki </title>
<link rel="stylesheet" href="css/style.css"
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h2><span class="highlight">Ultimate</span> Computer Wiki</h2>
</div>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li class="current"><a href="emulation.html">Emulation</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="learn.html">Learning</a></li>
<li><a href="programs.html">Programs</a></li>
<li><a href="websites.html">Websites</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class = container>
</div>
</section>
<center>
<style>
a { color: #666666;
text-decoration: none;}
</style>
<input type="text" id="search" onkeyup="searchFunction('search', 0)" placeholder="Search by Name">
<input type="text" id="searchDescription" onkeyup="searchFunction('searchDescription', 1)" placeholder="Search by Description">
<table id="List" class="tablesorter">
<thead>
<tr class="header">
<th>Name</th>
<th>Description</th>
<th>Download</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cemu</td>
<td>Cemu is a closed source Wii U video game console emulator for Microsoft Windows-based personal computers.</td>
<td><a href="http://cemu.info/">Download</a></td>
</tr>
<tr>
<td>Citra</td>
<td>Citra is the first emulator of Nintendo 3DS, developed by Citra Team. It is developed in the C++ programming language. Citra can run almost all homebrew games and some commercial games. Citra requires OpenGL version 3.3 or later to run.</td>
<td><a href="https://citra-emu.org/">Download</a></td>
</tr>
<tr>
<td>Dolphin</td>
<td>Dolphin is a video game console emulator for the GameCube and Wii that runs on Windows, Linux, macOS, and Android. It had its inaugural release in 2003 as freeware for Windows.</td>
<td><a href="https://dolphin-emu.org/">Download</a></td>
</tr>
<tr>
<td>LaunchBox</td>
<td>LaunchBox is a portable, box-art-based games database and launcher for DOSBox, emulators, arcade cabinets, and PC Games.</td>
<td><a href="https://www.launchbox-app.com/">Download</a></td>
</tr>
<tr>
<td>RPCS3</td>
<td>RPCS3 is a free and open-source in-development video game console emulator and debugger for the Sony PlayStation 3. It was developed in the C++ programming language and features OpenGL, Vulkan and DirectX 12 as its back-end renderers.</td>
<td><a href="https://rpcs3.net/">Download</a></td>
</tr>
<tr>
<td>RetroArch</td>
<td>RetroArch is the reference implementation of the libretro API. It is free, open source, cross-platform software, licensed under the GNU GPLv3.</td>
<td><a href="http://www.retroarch.com/">Download</a></td>
</tr>
<tr>
<td>RetroPie</td>
<td>Welcome to RetroPie. RetroPie allows you to turn your Raspberry Pi, ODroid C1/C2, or PC into a retro-gaming machine. </td>
<td><a href="https://retropie.org.uk/">Download</a></td>
</tr>
<tr>
<td>Ryujinx</td>
<td>Ryujinx is a Nintendo Switch Emulator programmed in C#; unlike most emulators that are created with C++ or C.</td>
<td><a href="https://ryujinx.org/">Download</a></td>
</tr>
<tr>
<td>yuzu</td>
<td>yuzu is an experimental open-source emulator for the Nintendo Switch from the creators of Citra. It is written in C++ with portability in mind, with builds actively maintained for Windows, Linux and macOS.</td>
<td><a href="https://yuzu-emu.org/">Download</a></td>
</tr>
<tr>
<td>Flashpoint</td>
<td>BlueMaxima’s Flashpoint is an ongoing preservation effort for games designed in commercial web frameworks. Named after Flash (which Adobe says it will discontinue in 2020), the maintainers have preserved over 59,000 games and animations since its inception. </td>
<td><a href="https://bluemaxima.org/flashpoint/downloads/ ">Download</a></td>
</tr>
</tbody>
</table>
<script>
$(document).ready(function()
{
$("#List").tablesorter({ sortList: [[0,0], [1,0]] });
}
);
</script>
<script>
function searchFunction(key, id) {
var input, filter, table, tr, td, i;
input = document.getElementById(key);
filter = input.value.toUpperCase();
table = document.getElementById("List");
tr = table.getElementsByTagName("tr");
var format = id;
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[format];
if (td) {
if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
</script>
</center>
<footer>
<p>Copyright © 2020 LostPizzaMan. All Rights Reserved</p>
</footer>
</body>
</html>