summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tlcs900/tlcs900.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tlcs900/tlcs900.h')
-rw-r--r--src/devices/cpu/tlcs900/tlcs900.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/cpu/tlcs900/tlcs900.h b/src/devices/cpu/tlcs900/tlcs900.h
index 4913ff1af98..a700735e4be 100644
--- a/src/devices/cpu/tlcs900/tlcs900.h
+++ b/src/devices/cpu/tlcs900/tlcs900.h
@@ -65,6 +65,7 @@ protected:
virtual space_config_vector memory_space_config() const override;
// device_state_interface overrides
+ virtual void state_import(const device_state_entry &entry) override;
virtual void state_string_export(const device_state_entry &entry, std::string &str) const override;
// device_disasm_interface overrides
@@ -222,13 +223,13 @@ protected:
uint16_t xor16( uint16_t a, uint16_t b);
uint32_t xor32( uint32_t a, uint32_t b);
void ldcf8( uint8_t a, uint8_t b );
- void ldcf16( uint8_t a, uint8_t b );
+ void ldcf16( uint8_t a, uint16_t b );
void andcf8( uint8_t a, uint8_t b );
- void andcf16( uint8_t a, uint8_t b );
+ void andcf16( uint8_t a, uint16_t b );
void orcf8( uint8_t a, uint8_t b );
- void orcf16( uint8_t a, uint8_t b );
+ void orcf16( uint8_t a, uint16_t b );
void xorcf8( uint8_t a, uint8_t b );
- void xorcf16( uint8_t a, uint8_t b );
+ void xorcf16( uint8_t a, uint16_t b );
uint8_t rl8( uint8_t a, uint8_t s );
uint16_t rl16( uint16_t a, uint8_t s );
uint32_t rl32( uint32_t a, uint8_t s );