EmulatorJS/docs/Systems/Atari 5200.md
Ethan O'Brien 369889bde4 Version 2.0.1
Co-authored-by: Protektor <tim.w.jung@gmail.com>
2022-08-08 20:27:00 -05:00

35 lines
561 B
Markdown

# Atari 5200
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'>
EJS_player = '#game';
EJS_core = 'atari5200';
// 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>
```