jpikl / cfxnes

JavaScript NES emulator and emulation library.

Home Page:https://jpikl.github.io/cfxnes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to start ROM when the page is loaded?

Bastard007 opened this issue · comments

How to start ROM by default when loading a page?

I am not sure if this is what you had in mind:

nes.rom.load(source).then(() => nes.start())

This will load and then start a ROM. See API docs for more details.

Sorry for my bad english...

I put the code in header:

 <script src="libs.js"></script>
 <script src="cfxnes.js"></script>
 <script src="app.js"></script>

and in the body

<nav riot-tag="app-nav"></nav>
<main riot-tag="app-main"></main>

What code should be inserted, what would be loaded ROM when loading the page?

It seem like you are trying to reuse pieces of code from the the cfxnes app. That is not necessary, you can just use the library on its own. There are some examples that might help.

Thank you. Everything working!!!!