Formatted Neo Geo Pocket Doc

This commit is contained in:
ElectronicsArchiver 2022-03-26 13:34:33 -04:00
parent 45c5126706
commit 7e0053ac8a
5 changed files with 27 additions and 28 deletions

View file

@ -14,10 +14,6 @@ There is no bios for this system.
EJS_player = '#game';
EJS_core = 'atari2600';
// URL to Bios file
EJS_biosUrl = '';
// URL to Game rom

View file

@ -14,10 +14,6 @@ There is no bios for this system.
EJS_player = '#game';
EJS_core = 'atari7800';
// URL to Bios file
EJS_biosUrl = '';
// URL to Game rom

View file

@ -16,10 +16,6 @@ There is no bios for this system.
EJS_player = '#game';
EJS_core = 'jaguar';
// URL to Bios file
EJS_biosUrl = '';
// URL to Game rom

View file

@ -14,10 +14,6 @@ There is no bios for this system.
EJS_player = '#game';
EJS_core = 'lynx';
// URL to Bios file
EJS_biosUrl = '';
// URL to Game rom

View file

@ -1,20 +1,35 @@
<h2>Neo Geo Poket</h2>
# Neo Geo Pocket
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 = 'ngp';
EJS_pathtodata = 'data/'; //path to all of the wasm and js files. MUST all be in the same directory!!
// 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