```text Usage: manzana-uno-emu [OPTIONS] [MEMFILELIST]
Arguments: [MEMFILELIST] Paths to the files to seed the memory with.
Format is (path[:load_addr_hex_no_0x],)+, load addresses must increase, and the loaded files must not overlap.
Options:
--log-level
[default: info]
-h, --help Print help (see a summary with '-h')
-V, --version Print version ```
The End
key exits the emulator.
The Woz monitor is always loaded at 0xff00
. It allows to inspect
memory contents as well as enter new programs and run them.
Run the emulator with apple1basic.bin
loaded at 0xe000
:
sh
cargo run --release -- roms/apple1basic.bin:e000
Inside the emulator, issue E000R
to run the BASIC interpreter.
Here is a sample program you might enter
basic
10 PRINT "HELLO"
20 GOTO 10
and run it with
basic
RUN
Run the emulator with apple30.bin
loaded at 0x0280
:
sh
cargo run --release -- roms/apple30.bin:280
Inside the emulator, issue 280R
to run the demo.