summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devcpu.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-07-02 13:29:03 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-07-02 13:29:03 +0000
commitaf9e6f531faea78f9c7ad4012167567fd1f24af2 (patch)
tree563d82898cbce779cd56387741d6035d4e7c48ab /src/emu/devcpu.h
parent48d8e3d3cf415187473e2756c1efbc10f46cdf66 (diff)
Kill cpu_get_sp().
Diffstat (limited to 'src/emu/devcpu.h')
-rw-r--r--src/emu/devcpu.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/emu/devcpu.h b/src/emu/devcpu.h
index 431a13cb3de..7afee93543d 100644
--- a/src/emu/devcpu.h
+++ b/src/emu/devcpu.h
@@ -290,7 +290,6 @@ enum
#define cpu_get_reg(cpu, _reg) device_state(cpu)->state_value(_reg)
#define cpu_get_previouspc(cpu) ((offs_t)device_state(cpu)->state_value(STATE_GENPCBASE))
#define cpu_get_pc(cpu) ((offs_t)device_state(cpu)->state_value(STATE_GENPC))
-#define cpu_get_sp(cpu) ((offs_t)device_state(cpu)->state_value(STATE_GENSP))
#define cpu_set_reg(cpu, _reg, val) device_state(cpu)->state_set_value(_reg, val)