-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (101 loc) · 3.33 KB
/
index.html
File metadata and controls
101 lines (101 loc) · 3.33 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->
<title>The PCBox emulator</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<img src="images/pcboxlogo.png" alt="PCBox">
<ul class="nav_links">
<li class="nav_link"><a href="https://github.com/PCBox/PCBox">Git</a></li>
<li class="nav_link"><a href="https://www.patreon.com/qeegmfer">Patreon</a></li>
<li class="nav_link"><a href="https://discord.gg/QeaGZSUUcf">Discord</a></li>
<li class="nav_link"><a href="https://github.com/PCBox/PCBox/releases/latest">Download</a></li>
</ul>
</header>
<br/>
<main>
<table class="main_row imain">
<tbody>
<tr>
<td>
<div>
<h1>PCBox</h1>
<small>A PC emulator focused on accuracy and hardware preservation.</small>
</div>
<br/>
</td>
<td>
<img src="images/Untitled.png">
</td>
</tr>
</tbody>
</table>
<br/>
<table class="main_row">
<tbody>
<tr>
<td>
<img src="images/Untitled1.png">
</td>
<td>
<h2>What can I do with PCBox?</h2>
<ul>
<li>Learn how computers work at a low level by exploring the source code</li>
<li>Run certain demos that don’t work on much else than real hardware (Like 8088MPH, for instance)</li>
<li>Run old games or applications, on emulated hardware that they were designed for</li>
<li><strong>Intel Pentium 3</strong> emulation</li>
<li>Experimental <strong>SSE2</strong>, <strong>SSE3</strong> and <strong>SSSE3</strong> emulation</li>
<li><strong>VIA C3</strong><!-- and <strong>Intel i815 (From "feature/ich2" branch of 86Box)</strong>--> emulation</li>
<li>Experimental <a href="https://coreboot.org">coreboot</a> support on some emulated boards
<br />From "feature/mtrr" branch of 86Box</li>
<strong>And more!</strong>
</ul>
<h2>System requirements</h2>
<table class="main_row">
<tbody>
<tr>
<td>
<center>Minimum</center>
<ul>
<li><strong>CPU</strong>: Intel Core 2 Duo</li>
<li><strong>OS</strong>: Windows 7 or modern Linux</li>
<li><strong>RAM</strong>: 4 GB</li>
</ul>
</td>
<td>
<center>Recommended</center>
<ul>
<li><strong>CPU</strong>: AMD Ryzen 7 9800X3D or Intel Core i5 12600K</li>
<li><strong>OS</strong>: Windows 11 or modern Linux</li>
<li><strong>RAM</strong>: 16 GB</li>
</ul>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<h2>Planned improvements for the future</h2>
<ul>
<li><strong>Intel Pentium 4</strong> emulation (including SSE2)</li>
<li><strong>AMD Athlon</strong> and <strong>AMD Athlon XP</strong> emulation</li>
<li>More accurate <strong>Intel Pentium 3</strong> speeds</li>
<li>New (optional) dynamic recompiler that sacrifices timing accuracy for speed</li>
<li><strong>x86_64</strong> emulation (far future)</li>
</ul>
</main>
<br/>
<footer>
This page is licensed under the Unlicense
</footer>
</body>
</html>