diff options
author | 2011-07-06 13:08:47 +0000 | |
---|---|---|
committer | 2011-07-06 13:08:47 +0000 | |
commit | bd598da61fc2a6124578725275af4f5f91636fc6 (patch) | |
tree | a55cdcab80732234644bbf376ccaa3ffff9abb05 /src/emu/romload.h | |
parent | 9babf1fcf48ff30f443d995283f2db592a08d4f1 (diff) |
nvram - in case of multiple bioses, system nvram will be saved in [Miodrag Milanovic]
form systemname_biosnum.nv in cases when non-default bios is used.
For default bios selection all stay the same.
Diffstat (limited to 'src/emu/romload.h')
-rw-r--r-- | src/emu/romload.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/romload.h b/src/emu/romload.h index 7025ddcfa17..29f9988e59e 100644 --- a/src/emu/romload.h +++ b/src/emu/romload.h @@ -274,6 +274,11 @@ int rom_load_warnings(running_machine &machine); /* return the number of BAD_DUMP/NO_DUMP warnings we generated */ int rom_load_knownbad(running_machine &machine); +/* return id of selected bios */ +int rom_system_bios(running_machine &machine); + +/* return id of default bios */ +int rom_default_bios(running_machine &machine); /* ----- Helpers ----- */ |