summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2016-04-24 02:21:40 -0700
committerMichael Pavone <pavone@retrodev.com>2016-04-24 02:21:40 -0700
commit44606af649af86d3ab9d43cbe0bc536f40d00165 (patch)
tree2a71ff84fa10c3aabfc3c772a3410d23af109378
parent508a9aedf03d887dcc00a8c53caf8cef1ada2937 (diff)
Add a trivial get_open_bus_value() function to stateview so it compiles again.
-rw-r--r--stateview.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/stateview.c b/stateview.c
index f7a21fd..51d736d 100644
--- a/stateview.c
+++ b/stateview.c
@@ -33,6 +33,11 @@ z80_context *z80_handle_code_write(uint32_t address, z80_context *context)
return NULL;
}
+uint16_t get_open_bus_value()
+{
+ return 0;
+}
+
void ym_data_write(ym2612_context * context, uint8_t value)
{
}