summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/clipper/clipper.h
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2016-12-28 15:38:25 +0700
committer Patrick Mackinlay <pmackinlay@hotmail.com>2016-12-28 15:38:25 +0700
commit1180dcfc36362b97dfd68833c77317300ae3fc39 (patch)
tree9399ffd8e0789c8c4ac0d1d5c682d430974d99ec /src/devices/cpu/clipper/clipper.h
parent8b3a5e77b7a1f87dca1a02af0ffea1f3e8ee6621 (diff)
fix for default parameter values
Diffstat (limited to 'src/devices/cpu/clipper/clipper.h')
-rw-r--r--src/devices/cpu/clipper/clipper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/clipper/clipper.h b/src/devices/cpu/clipper/clipper.h
index cea713a2b4a..6a00efc3549 100644
--- a/src/devices/cpu/clipper/clipper.h
+++ b/src/devices/cpu/clipper/clipper.h
@@ -246,7 +246,7 @@ private:
bool clipper_device::evaluate_branch(uint32_t condition);
- uint32_t clipper_device::intrap(uint32_t vector, uint32_t pc, uint32_t cts, uint32_t mts);
+ uint32_t clipper_device::intrap(uint32_t vector, uint32_t pc, uint32_t cts = CTS_NO_CPU_TRAP, uint32_t mts = MTS_NO_MEMORY_TRAP);
};
extern const device_type CLIPPER;