Really use a JUMP for NOP, not a block move.
This commit is contained in:
parent
b3dae2b4b6
commit
6b14001ff6
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ncr53cxxx.c,v 1.7 2001/12/05 18:31:53 fredette Exp $ */
|
||||
/* $NetBSD: ncr53cxxx.c,v 1.8 2002/04/17 21:39:14 bouyer Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995,1999 Michael L. Hitch
|
||||
|
@ -412,7 +412,7 @@ main (int argc, char *argv[])
|
|||
if (outfp) {
|
||||
time_t cur_time;
|
||||
|
||||
fprintf(outfp, "/*\t$NetBSD: ncr53cxxx.c,v 1.7 2001/12/05 18:31:53 fredette Exp $\t*/\n");
|
||||
fprintf(outfp, "/*\t$NetBSD: ncr53cxxx.c,v 1.8 2002/04/17 21:39:14 bouyer Exp $\t*/\n");
|
||||
fprintf(outfp, "/*\n");
|
||||
fprintf(outfp, " *\tDO NOT EDIT - this file is automatically generated.\n");
|
||||
time(&cur_time);
|
||||
|
@ -1090,7 +1090,7 @@ void f_store (void)
|
|||
|
||||
void f_nop (void)
|
||||
{
|
||||
inst0 = 0x10000000;
|
||||
inst0 = 0x80000000;
|
||||
inst1 = 0x00000000;
|
||||
store_inst ();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue