diff options
| author | bouyer <bouyer@NetBSD.org> | 2002-04-17 21:39:14 +0000 |
|---|---|---|
| committer | bouyer <bouyer@NetBSD.org> | 2002-04-17 21:39:14 +0000 |
| commit | 6b14001ff6be6062039be8ec508470e1fd1f5a45 (patch) | |
| tree | 72af94cb11bdd4a85e8b32bb54a212e429570d92 /sys/dev/microcode | |
| parent | b3dae2b4b6db3b475ad403a1f9b081e07c2e57f9 (diff) | |
Really use a JUMP for NOP, not a block move.
Diffstat (limited to 'sys/dev/microcode')
| -rw-r--r-- | sys/dev/microcode/siop/ncr53cxxx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/microcode/siop/ncr53cxxx.c b/sys/dev/microcode/siop/ncr53cxxx.c index e40844dc02d..3984f78fac6 100644 --- a/sys/dev/microcode/siop/ncr53cxxx.c +++ b/sys/dev/microcode/siop/ncr53cxxx.c @@ -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 (); } |
