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

📄 xspim.h

📁 用汇编语言编程源代码
💻 H
字号:
/* SPIM S20 MIPS simulator.   X interface to SPIM   Copyright (C) 1990-2000 by James Larus (larus@cs.wisc.edu)   ALL RIGHTS RESERVED.   SPIM is distributed under the following conditions:     You may make copies of SPIM for your own use and modify those copies.     All copies of SPIM must retain my name and copyright notice.     You may not sell SPIM or distributed SPIM in conjunction with a     commerical product or service without the expressed written consent of     James Larus.   THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR   PURPOSE. *//* $Header: /Software/SPIM/src/xspim.h 6     1/12/02 4:16p Larus $ */#define IO_BUFFSIZE 	10000#define TEXTHEIGHT \	(text_font->max_bounds.ascent + text_font->max_bounds.descent)#define TEXTWIDTH \	(text_font->max_bounds.width)/* Exported functions: */#ifdef __STDC__void clear_console_display (void);void execute_program (mem_addr pc, int steps, int display, int cont_bkpt);void popup_console (Widget w, XtPointer client_data, XtPointer call_data);void read_file (char *name, int assembly_file);void redisplay_data (void);void redisplay_text (void);void start_program (mem_addr addr);#elsevoid clear_console_display ();void execute_program ();void popup_console ();void read_file ();void redisplay_data ();void redisplay_text ();void start_program ();#endif/* Exported variables: */extern XtAppContext app_con;extern Widget message, console;extern XtAppContext app_context;extern XFontStruct *text_font;extern Dimension button_width;extern int load_trap_handler;extern char *load_file;extern Pixmap mark;

⌨️ 快捷键说明

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