ux: do not have a default BIOS file
This commit is contained in:
parent
5aa2e9380b
commit
438486abce
|
@ -12,6 +12,9 @@ Nintendo GameBoy Advance™ emulator and debugger, written in Rust.
|
||||||
## External content
|
## External content
|
||||||
The file at [`external/gamecontrollerdb.txt`](./external/gamecontrollerdb.txt) is not my work - it is sourced from [this GitHub repository](https://github.com/mdqinc/SDL_GameControllerDB) and covered by the appropriate license present in said repository.
|
The file at [`external/gamecontrollerdb.txt`](./external/gamecontrollerdb.txt) is not my work - it is sourced from [this GitHub repository](https://github.com/mdqinc/SDL_GameControllerDB) and covered by the appropriate license present in said repository.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
You will need to specify the BIOS file to run with, using the `--bios` command-line argument. Note that there is such a BIOS ROM present in this directory at [`./external/gba_bios.bin`](./external/gba_bios.bin)
|
||||||
|
|
||||||
## Key bindings
|
## Key bindings
|
||||||
GBA key bindings:
|
GBA key bindings:
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ pub struct Options {
|
||||||
pub rom: PathBuf,
|
pub rom: PathBuf,
|
||||||
|
|
||||||
/// Bios file to use
|
/// Bios file to use
|
||||||
#[structopt(long, parse(from_os_str), default_value = "gba_bios.bin")]
|
#[structopt(long, parse(from_os_str))]
|
||||||
pub bios: PathBuf,
|
pub bios: PathBuf,
|
||||||
|
|
||||||
/// Do not output sound
|
/// Do not output sound
|
||||||
|
|
Reference in a new issue