summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms9900/tms9980a.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms9900/tms9980a.h')
-rw-r--r--src/devices/cpu/tms9900/tms9980a.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/devices/cpu/tms9900/tms9980a.h b/src/devices/cpu/tms9900/tms9980a.h
index 82492d6073a..d32c79dc9ca 100644
--- a/src/devices/cpu/tms9900/tms9980a.h
+++ b/src/devices/cpu/tms9900/tms9980a.h
@@ -29,23 +29,23 @@ public:
tms9980a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
- void mem_read(void);
- void mem_write(void);
- void acquire_instruction(void);
+ void mem_read(void) override;
+ void mem_write(void) override;
+ void acquire_instruction(void) override;
- void resolve_lines();
+ void resolve_lines() override;
- UINT16 read_workspace_register_debug(int reg);
- void write_workspace_register_debug(int reg, UINT16 data);
+ UINT16 read_workspace_register_debug(int reg) override;
+ void write_workspace_register_debug(int reg, UINT16 data) override;
- UINT32 execute_min_cycles() const;
- UINT32 execute_max_cycles() const;
- UINT32 execute_input_lines() const;
- void execute_set_input(int irqline, int state);
+ UINT32 execute_min_cycles() const override;
+ UINT32 execute_max_cycles() const override;
+ UINT32 execute_input_lines() const override;
+ void execute_set_input(int irqline, int state) override;
- UINT32 disasm_min_opcode_bytes() const;
- UINT32 disasm_max_opcode_bytes() const;
- offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
+ UINT32 disasm_min_opcode_bytes() const override;
+ UINT32 disasm_max_opcode_bytes() const override;
+ offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) override;
address_space_config m_program_config80;
address_space_config m_io_config80;
};