aboutsummaryrefslogtreecommitdiff
path: root/src/main.effekt
blob: 446f2ed4d50f954cd1f4209d20a745e8ccef45c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module main // must be named same as the file!

import src/cpu
import src/renderer
import src/renderers/js
import bytearray

def main(): Unit = {
  // Using the JS backend
  def r = JSRenderer::makeRenderer
  try {
    r.init()
  } with start { rom =>
    log("ROM loaded to the functionnn!")
    resume(())
  }
  ()
}