-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
135 lines (125 loc) · 4.28 KB
/
index.php
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
<?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?>
<!DOCTYPE html>
<html lang="en">
<?php include "header.inc" ?>
<body>
<?php include "navbar.inc" ?>
<div class="container-fluid">
<div class="container">
<div class="row nasm-info">
<div class="col-md-6">
<h2>Welcome</h2>
<p>This is the project webpage
for the Netwide Assembler (NASM), an asssembler for
the x86 CPU architecture portable to nearly every
modern platform, and with code generation for many
platforms old and new.</p>
</div>
<div class="col-md-6">
<h2>License</h2>
<p>As of version 2.07, NASM is now under the
<a href="http://opensource.org/licenses/BSD-2-Clause">Simplified (2-clause) BSD license</a>.
The details of the license are available in the documentation.</p>
</div>
</div>
</div>
</div>
<div class="container-fluid nasm-info">
<div class="container">
<div class="row nasm-info">
<div class="col-md-12">
<h2>Latest version</h2>
<p>
<table class="table table-hover table-responsive">
<tbody>
<tr>
<th scope="row">Stable</th>
<td><a href="http://www.nasm.us/pub/nasm/releasebuilds/<?php echo $version; ?>/"><?php echo $version; ?></a></td>
<td><a href="https://nasm.us/doc/nasmdocc.html">History</a></td>
</tr>
<?php
if ($rc_version) {
echo "<tr>";
echo "<th scope=\"row\">RC</th>";
echo "<td><a href=\"http://www.nasm.us/pub/nasm/releasebuilds/$rc_version/\">$rc_version</a></td>";
echo "<td><a href=\"https://nasm.us/xdoc/$rc_version/html/nasmdocc.html\">History</a></td>";
echo "</tr>";
}
?>
<tr>
<th scope="row">Builds</th>
<td><a href="http://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D">List</a></td>
<td></td>
</tr>
<tr>
<th scope="row">Snapshots</th>
<td><a href="http://www.nasm.us/pub/nasm/snapshots/latest/">Latest</a>,
<a href="http://www.nasm.us/pub/nasm/snapshots/?C=M;O=D">List</a></td>
<td></td>
</tr>
</tbody>
</table>
</p>
<p>For users of RPM-based Linux distributions (e.g. Fedora, Red Hat, SUSE, ...),
you can download the official NASM builds using <code>dnf</code> or <code>yum</code>
by installing <a href="nasm.repo">nasm.repo</a> in your <code>/etc/yum/yum.repos.d</code>
directory.</p>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="container">
<div class="row nasm-info">
<div class="col-md-12">
<h2 class="centered">Infrastructure Change</h2>
<p>On July 1, 2020, the
official NASM git repository moved to
<a href="https://github.com/netwide-assembler/nasm.git">github</a>.</p>
<p>The previous repository on <em>repo.or.cz</em> is no longer maintained.</p>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="container">
<div class="row nasm-info">
<div class="col-md-12">
<h2 class="centered">Development Team</h2>
<p>NASM was originally developed by Simon Tatham and Julian Hall, and is
now maintained by a team led by H. Peter Anvin.</p>
<p>Currently active team members are:
<ul>
<li>H. Peter Anvin</li>
<li>Cyrill Gorcunov</li>
<li>Chang Seok Bae</li>
<li>Jim Kukunas</li>
<li>Frank B. Kotler</li>
</ul>
</p>
<p>... with support from many others, and we are always looking for more developers.</p>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="container">
<div class="row nasm-info">
<div class="col-md-12">
<h2 class="centered">Your reports aren't going to <code>/dev/null</code></h2>
<p>We're looking for your comments, suggestions and, of course, bug-reports.
Report any suspicious behavior you encounter to help us improve the NASM
for everyone!</p>
<p>Please post your messages to the
<a href="https://lists.nasm.us/nasm-devel/">mailing list</a>,
or file a <a href="http://bugzilla.nasm.us">bug report</a>.</p>
<p>Don't worry if your report is not immediately addressed, even within the
first few days, as this is usual for us. Your report will, however, be recorded
and dealt with, of course, as time permits.</p>
</div>
</div>
</div>
</div>
<?php include "footer.inc" ?>
</body>
</html>