diff options
author | 2023-03-25 04:35:18 +0100 | |
---|---|---|
committer | 2023-03-24 23:35:18 -0400 | |
commit | 972703281dae54715b2d1f59f7b9fea5b8f5e77a (patch) | |
tree | 0b1060c6a2cc25dfcf3b43b7572a6a8e3c29bbc3 /src/devices/bus/isa/isa_cards.cpp | |
parent | 395d41d0e9e93203c9c49ce4376a735f76de54b7 (diff) |
bus/ISA: Added HP82321A BASIC Language coprocessor (#10926)
* emu: add defer_access() method, which is useful for keeping the cpu in a loop restarting the current
instruction to emulate waitstates.
* add HP82321A Basic Language Coprocessor
This adds support for the HP82321A Basic language coprocessor, which emulates a HP9816 system with a 68K cpu. See http://www.hpmuseum.net/display_item.php?hw=681 for more details and software to run on this card.
Diffstat (limited to 'src/devices/bus/isa/isa_cards.cpp')
-rw-r--r-- | src/devices/bus/isa/isa_cards.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/bus/isa/isa_cards.cpp b/src/devices/bus/isa/isa_cards.cpp index 0b01c16d501..f085f7af70b 100644 --- a/src/devices/bus/isa/isa_cards.cpp +++ b/src/devices/bus/isa/isa_cards.cpp @@ -81,6 +81,7 @@ #include "pds.h" // other +#include "hpblp.h" #include "chessmdr.h" #include "chessmsr.h" #include "finalchs.h" @@ -235,4 +236,5 @@ void pc_isa16_cards(device_slot_interface &device) device.option_add("dc820b", TEKRAM_DC820B); // actually an EISA card device.option_add("omti8621", ISA16_OMTI8621); device.option_add("lrk331", LRK331); + device.option_add("hpblp", HPBLP); } |