24 lines
859 B
PHP
24 lines
859 B
PHP
|
<?php
|
||
|
$title = "Links";
|
||
|
include("header.php");
|
||
|
?>
|
||
|
|
||
|
<div class="mainbox">
|
||
|
<h2 class="boxhead">Links</h2>
|
||
|
<div class="boxbody">
|
||
|
<p>Other NES Emulators:</p>
|
||
|
|
||
|
<ul>
|
||
|
<li><a href="http://fakenes.sourceforge.net/">FakeNES</a> - FakeNES is a quite portable NES emulator with an internal GUI.</li>
|
||
|
<li><a href="http://nestopia.sourceforge.net/">Nestopia</a> - Nestopia has fairly accurate emulation, and is written for MS Windows.</li>
|
||
|
<li><a href="http://nestra.linuxgames.com/">NEStra</a></li>
|
||
|
<li><a href="http://nosefart.sourceforge.net/">Nosefart</a> - NES Music Player</li>
|
||
|
<li><a href="http://tuxnes.sourceforge.net/">TuxNES</a> - A pretty good NES emulator for Unix.</li>
|
||
|
<li><a href="http://www.scottweber.com/projects/gtuxnes/">GTuxNES</a> - A graphical launcher for TuxNES.</li>
|
||
|
</ul>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?php include("footer.php"); ?>
|