Formatted Atari 7800 Doc

This commit is contained in:
ElectronicsArchiver 2022-03-26 13:20:19 -04:00
parent d6565c283a
commit e15bdfec71

View file

@ -1,20 +1,37 @@
<h2>Atari 7800</h2>
# Atari 7800
Code example
I do not know the file extension limits for this system. <br>
There is no bios for this system.
## Code example
```html
<div style='width:640px;height:480px;max-width:100%'>
<div id='game'></div>
</div>
<script type='text/javascript'>
```
<div style="width:640px;height:480px;max-width:100%">
<div id="game"></div>
</div>
<script type="text/javascript">
EJS_player = '#game';
EJS_gameUrl = ''; // Url to Game rom
EJS_core = 'atari7800';
EJS_pathtodata = 'data/'; //path to all of the wasm and js files. MUST all be in the same directory!!
// URL to Bios file
EJS_biosUrl = '';
// URL to Game rom
EJS_gameUrl = '';
/*
* Path to the WASM / JS files
* HAS TO BE in the same directory.
*/
EJS_pathtodata = 'data/';
</script>
<script src="data/loader.js"></script>
<script src='data/loader.js'></script>
```
I do not know the file extension limits for this system.
There is no bios for this system