Esempio n. 1
0
        //READ8_MEMBER( watchdog_timer_device::reset_r )
        public u8 watchdog_timer_device_reset_r(address_space space, offs_t offset, u8 mem_mask = 0xff)
        {
            watchdog_timer_device watchdog = (watchdog_timer_device)machine().config().device_find(this, "watchdog");

            return(watchdog.reset_r(space, offset, mem_mask));
        }
Esempio n. 2
0
        //WRITE8_MEMBER( watchdog_timer_device::reset_w )
        public void watchdog_timer_device_reset_w(address_space space, offs_t offset, u8 data, u8 mem_mask = 0xff)
        {
            watchdog_timer_device watchdog = (watchdog_timer_device)machine().config().device_find(this, "watchdog");

            watchdog.reset_w(space, offset, data, mem_mask);
        }