⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 devices.c

📁 这个是LINUX下的GDB调度工具的源码
💻 C
字号:
/* i960 device support   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.   Contributed by Cygnus Solutions.This file is part of GDB, the GNU debugger.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public License alongwith this program; if not, write to the Free Software Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */#include "sim-main.h"#ifdef HAVE_DV_SOCKSER#include "dv-sockser.h"#endif/* Handling the MSPR register is done by creating a device in the core   mapping that winds up here.  */device i960_devices;intdevice_io_read_buffer (device *me, void *source, int space,		       address_word addr, unsigned nr_bytes,		       SIM_DESC sd, SIM_CPU *cpu, sim_cia cia){  if (STATE_ENVIRONMENT (sd) != OPERATING_ENVIRONMENT)    return nr_bytes;#ifdef HAVE_DV_SOCKSER  if (addr == UART_INCHAR_ADDR)    {      int c = dv_sockser_read (sd);      if (c == -1)	return 0;      *(char *) source = c;      return 1;    }  if (addr == UART_STATUS_ADDR)    {      int status = dv_sockser_status (sd);      unsigned char *p = source;      p[0] = 0;      p[1] = (((status & DV_SOCKSER_INPUT_EMPTY)#ifdef UART_INPUT_READY0	       ? UART_INPUT_READY : 0)#else	       ? 0 : UART_INPUT_READY)#endif	      + ((status & DV_SOCKSER_OUTPUT_EMPTY) ? UART_OUTPUT_READY : 0));      return 2;    }#endif  return nr_bytes;}intdevice_io_write_buffer (device *me, const void *source, int space,			address_word addr, unsigned nr_bytes,			SIM_DESC sd, SIM_CPU *cpu, sim_cia cia){#if WITH_SCACHE  /* MSPR support is deprecated but is kept in for upward compatibility     with existing overlay support.  */  if (addr == MSPR_ADDR)    {      if ((*(const char *) source & MSPR_PURGE) != 0)	scache_flush (sd);      return nr_bytes;    }  if (addr == MCCR_ADDR)    {      if ((*(const char *) source & MCCR_CP) != 0)	scache_flush (sd);      return nr_bytes;    }#endif  if (STATE_ENVIRONMENT (sd) != OPERATING_ENVIRONMENT)    return nr_bytes;#if HAVE_DV_SOCKSER  if (addr == UART_OUTCHAR_ADDR)    {      int rc = dv_sockser_write (sd, *(char *) source);      return rc == 1;    }#endif  return nr_bytes;}voiddevice_error (device *me, char *message, ...){}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -