diff options
author | 2010-07-01 05:01:12 +0000 | |
---|---|---|
committer | 2010-07-01 05:01:12 +0000 | |
commit | 7bdb4bf0830ed72fc4b81f26bdd192cb2c2da9e2 (patch) | |
tree | 1250459625b6c5b04ff1fb93e647258e61118748 /src/emu/devcpu.h | |
parent | 884cadfde0862228676765d522b1dbcde5236a61 (diff) |
Use UINT64s for converting cycles <-> clocks.
Diffstat (limited to 'src/emu/devcpu.h')
-rw-r--r-- | src/emu/devcpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/devcpu.h b/src/emu/devcpu.h index 6bd7941e8d3..431a13cb3de 100644 --- a/src/emu/devcpu.h +++ b/src/emu/devcpu.h @@ -437,8 +437,8 @@ protected: virtual bool device_process_token(UINT32 entrytype, const machine_config_token *&tokens); // device_config_execute_interface overrides - virtual UINT32 execute_clocks_to_cycles(UINT32 clocks) const; - virtual UINT32 execute_cycles_to_clocks(UINT32 cycles) const; + virtual UINT64 execute_clocks_to_cycles(UINT64 clocks) const; + virtual UINT64 execute_cycles_to_clocks(UINT64 cycles) const; virtual UINT32 execute_min_cycles() const { return get_legacy_config_int(CPUINFO_INT_MIN_CYCLES); } virtual UINT32 execute_max_cycles() const { return get_legacy_config_int(CPUINFO_INT_MAX_CYCLES); } virtual UINT32 execute_input_lines() const { return get_legacy_config_int(CPUINFO_INT_INPUT_LINES); } |