aboutsummaryrefslogtreecommitdiff
path: root/sim/mips/interp.c
diff options
context:
space:
mode:
authorPatrick Macdonald <patrickm@redhat.com>1998-05-21 15:41:35 +0000
committerPatrick Macdonald <patrickm@redhat.com>1998-05-21 15:41:35 +0000
commitfab0ee0d0b9cad1e25b085c4fb7d001997fda59a (patch)
treec4882e55dd27a707b692bb274135135afe83ed77 /sim/mips/interp.c
parent26feb3a83d605a9f2302266d524e6e443d31d197 (diff)
downloadfsf-binutils-gdb-fab0ee0d0b9cad1e25b085c4fb7d001997fda59a.zip
fsf-binutils-gdb-fab0ee0d0b9cad1e25b085c4fb7d001997fda59a.tar.gz
fsf-binutils-gdb-fab0ee0d0b9cad1e25b085c4fb7d001997fda59a.tar.bz2
* interp.c: modified name of GIF device
* sky-gpuif.[ch]: IMT burst support and queue manipulation ( see ChangeLog.sky for complete details ) * sky-gs.c: modified name of GIF device
Diffstat (limited to 'sim/mips/interp.c')
-rw-r--r--sim/mips/interp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/mips/interp.c b/sim/mips/interp.c
index e0c878d..c09bf5a 100644
--- a/sim/mips/interp.c
+++ b/sim/mips/interp.c
@@ -289,9 +289,9 @@ Re-compile simulator with \"-DTRACE\" to enable this option.\n");
case OPTION_GS_ENABLE:
/* Enable GS libraries. */
if ( arg && strcmp (arg, "on") == 0 )
- gif_options (&gif_full,GIF_OPT_GS_ENABLE,1,0,0);
+ gif_options (&GIF_full,GIF_OPT_GS_ENABLE,1,0,0);
else if ( arg && strcmp (arg, "off") == 0 )
- gif_options (&gif_full,GIF_OPT_GS_ENABLE,0,0,0);
+ gif_options (&GIF_full,GIF_OPT_GS_ENABLE,0,0,0);
else
{
fprintf (stderr, "Unrecognized enable-gs option `%s'\n", arg);
@@ -312,7 +312,7 @@ Re-compile simulator with \"-DTRACE\" to enable this option.\n");
( sscanf (arg,"%lx%c%Lx%c%lx%c%Lx", &address[0],&c[0],&value[0],
&c[1],&address[1],&c[2],&value[1]) == 7 ))
{
- gif_options (&gif_full, ( opt == OPTION_GS_REFRESH1 ) ?
+ gif_options (&GIF_full, ( opt == OPTION_GS_REFRESH1 ) ?
GIF_OPT_GS_REFRESH1:GIF_OPT_GS_REFRESH2,
0,&address[0],&value[0]);
}