Skip to contents

Starts a game immediately using a ROM. See vignette("guide") for how to play.

Usage

quickload(ROM)

Arguments

ROM

ROM to play.

Details

Convenience wrapper for the code:

RAM = ram.init(ROM)
RAM = ram.run(RAM)

This saves RAM in the environment in which quickload() was called, so the RAM can be accessed afterwards as if it were run manually.

Examples

if (FALSE) { # \dontrun{
quickload(Snake)
} # }