-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (109 loc) · 4.8 KB
/
index.html
File metadata and controls
118 lines (109 loc) · 4.8 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
---
layout: default
---
{% include analytics.html category="root" %}
<div class="jumbotron">
<div class="row">
<div class="col-lg-4">
<img alt="emuStudio-logo" class="img-responsive" src="{{ base }}files/images/logo-1.svg"/>
</div>
<div class="col-lg-8">
<h1>emuStudio</h1>
<p class="lead">
Free, cross-platform toy-computer emulation platform and framework. It targets the
"academic" sphere to help students or enthusiasts gaining the "know-how" and experiment with how
computers work.
</p>
<p>
<strong>Platform</strong>, because it supports full computer emulation "life-cycle".
From writing and compiling programs for the emulated machine, to running and debugging.
Examples of real computer emulators are <a href="{{ base }}documentation/user/altair8800">MITS
Altair8800</a>,
<a href="{{ base }}documentation/user/ssem">SSEM (a.k.a. "Baby")</a>. Abstract computers include:
<a href="{{ base }}documentation/user/ram">RAM</a>, <a href="{{ base }}documentation/user/rasp">RASP</a>,
and
<a href="{{ base }}documentation/user/brainduck">Brainfuck "emulator"</a>.
</p>
<p>
<strong>Framework</strong>, because it includes API and supporting back-end enabling developing new
computer emulators.
Good <a href="{{ base }}/documentation/developer/introduction">developer documentation</a> is a matter
of course.
As in real computers, emuStudio allows reusing existing components resulting in different computer
configurations.
</p>
<a aria-label="Follow @{{ site.repository }} on GitHub"
class="github-button"
data-count-api="/users/{{ site.repository }}#followers"
data-count-aria-label="# followers on GitHub"
data-count-href="/{{ site.repository }}/followers"
data-style="mega"
href="https://github.com/{{ site.repository }}">Follow @emuStudio</a>
<a aria-label="Sponsor"
class="github-button"
data-style="mega"
href="https://github.com/sponsors/vbmacher">Sponsor</a>
</div>
</div>
</div>
<h1>Getting started</h1>
<p>The following options might help you to get started with emuStudio.</p>
<div class="card mb-3">
<div class="card-body">
<div class="row no-gutters">
<div class="col-md-2">
<i class="far fa-image fa-5x"></i>
</div>
<div class="col-md-8">
<h5 class="card-title">I want to see something first</h5>
<p class="card-text">If you are curious how emuStudio looks before installing it, we have some
screenshots prepared.</p>
<a class="btn btn-primary" href="{{ base }}screenshots/">See Screenshots</a>
</div>
</div>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<div class="row no-gutters">
<div class="col-md-2">
<i class="far fa-file-archive fa-5x"></i>
</div>
<div class="col-md-8">
<h5 class="card-title">Installation & run</h5>
<p class="card-text">The first step is to install emuStudio.</p>
<a class="btn btn-primary" href="{{ base }}download/">Go to Download page</a>
</div>
</div>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<div class="row no-gutters">
<div class="col-md-2">
<i class="far fa-list-alt fa-5x"></i>
</div>
<div class="col-md-8">
<h5 class="card-title">What can I do as a user?</h5>
<p class="card-text">emuStudio is easy to use. Still, a guidance to advanced user experience might be
interesting.</p>
<a class="btn btn-primary" href="{{ base }}documentation/user/introduction">See User documentation</a>
</div>
</div>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<div class="row no-gutters">
<div class="col-md-2">
<i class="far fa-list-alt fa-5x"></i>
</div>
<div class="col-md-8">
<h5 class="card-title">I'm a developer</h5>
<p class="card-text">Developers and enthusiasts might try writing a custom emulator.</p>
<a class="btn btn-primary" href="{{ base }}documentation/developer/introduction">See Developer
documentation</a>
</div>
</div>
</div>
</div>