atari5200: added menu item, presets

This commit is contained in:
Steven Hugg 2023-02-06 14:03:25 -05:00
parent 2f8a5bee84
commit 9d39edf452
2 changed files with 2 additions and 0 deletions

View File

@ -160,6 +160,7 @@ if (window.location.host.endsWith('8bitworkshop.com')) {
<li><a class="dropdown-item" href="?platform=sms-sg1000-libcv">Sega SG-1000</a></li>
<li><a class="dropdown-item" href="?platform=sms-sms-libcv">Sega Master System</a></li>
<li><a class="dropdown-item" href="?platform=sms-gg-libcv">Sega Game Gear</a></li>
<li><a class="dropdown-item" href="?platform=atari8-5200">Atari 5200</a></li>
<li><a class="dropdown-item" href="?platform=atari7800">Atari 7800</a></li>
<!--
<li><a class="dropdown-item" href="?platform=vectrex">Vectrex</a></li>

View File

@ -66,6 +66,7 @@ class Atari800Platform extends Base6502MachinePlatform<Atari800> {
}
class Atari5200Platform extends Atari800Platform {
getPresets() { return Atari8_PRESETS; }
newMachine() { return new Atari5200(); }
biosPath = 'res/altirra/superkernel.rom';
}