Update comments/help for clarity about rom size and mappers
This commit is contained in:
parent
f899518989
commit
7443c2bd17
|
|
@ -139,7 +139,10 @@ function main ()
|
||||||
prg_rom_size_kb = 256 * 128, -- Size of NES PRG-ROM in KByte
|
prg_rom_size_kb = 256 * 128, -- Size of NES PRG-ROM in KByte
|
||||||
chr_rom_size_kb = 8, -- Size of NES CHR-ROM in KByte
|
chr_rom_size_kb = 8, -- Size of NES CHR-ROM in KByte
|
||||||
wram_size_kb = 0, -- Size of NES PRG-RAM/WRAM in KByte
|
wram_size_kb = 0, -- Size of NES PRG-RAM/WRAM in KByte
|
||||||
rom_size_kbyte = 8 * 128, -- Size of ROM in Megabits, used for non-NES consoles.
|
rom_size_kbyte = 8 * 128, -- Size of ROM in kilobytes, used for non-NES consoles.
|
||||||
|
|
||||||
|
-- If more convienient, specifying size in megabits is also supported.
|
||||||
|
-- rom_size_kbyte = 8, -- Size of ROM in megabits, used for non-NES consoles.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,10 @@ const char *HELP = "Usage: inlretro [options]\n\n"\
|
||||||
" --dump_ram_filename=filename, -a filename\tIf provided write ram to this filename\n"\
|
" --dump_ram_filename=filename, -a filename\tIf provided write ram to this filename\n"\
|
||||||
" --help, -h\t\t\t\t\tDisplays this message.\n"\
|
" --help, -h\t\t\t\t\tDisplays this message.\n"\
|
||||||
" --lua_filename=filename, -s filename\t\tIf provided, use this script for main application logic\n"\
|
" --lua_filename=filename, -s filename\t\tIf provided, use this script for main application logic\n"\
|
||||||
" --mapper=mapper, -m mapper\t\t\tNES console only, mapper ASIC on cartridge\n"\
|
" --mapper=mapper, -m mapper\t\t\tNES, GB consoles only, mapper ASIC on cartridge\n"\
|
||||||
" \t\t\t\t\t\t{action53,bnrom,cdream,cninja,cnrom,dualport,easynsf,fme7,\n"\
|
" \t\t\t\t\t\tNES:\t{action53,bnrom,cdream,cninja,cnrom,dualport,easynsf,fme7,\n"\
|
||||||
" \t\t\t\t\t\t mapper30,mmc1,mmc3,mmc4,mmc5,nrom,unrom}\n"\
|
" \t\t\t\t\t\t\t mapper30,mmc1,mmc3,mmc4,mmc5,nrom,unrom}\n"\
|
||||||
|
" \t\t\t\t\t\tGB:\t{mbc1,romonly}\n"\
|
||||||
" --nes_prg_rom_size_kbyte=size, -x size_kbytes\tNES-only, size of PRG-ROM in kilobytes\n"\
|
" --nes_prg_rom_size_kbyte=size, -x size_kbytes\tNES-only, size of PRG-ROM in kilobytes\n"\
|
||||||
" --nes_chr_rom_size_kbyte=size, -y size_kbytes\tNES-only, size of CHR-ROM in kilobytes\n"\
|
" --nes_chr_rom_size_kbyte=size, -y size_kbytes\tNES-only, size of CHR-ROM in kilobytes\n"\
|
||||||
" --rom_size_kbyte=size, -k size_kbytes\t\tSize of ROM in kilobytes, non-NES systems.\n"\
|
" --rom_size_kbyte=size, -k size_kbytes\t\tSize of ROM in kilobytes, non-NES systems.\n"\
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue