From 6b14001ff6be6062039be8ec508470e1fd1f5a45 Mon Sep 17 00:00:00 2001 From: bouyer Date: Wed, 17 Apr 2002 21:39:14 +0000 Subject: Really use a JUMP for NOP, not a block move. --- sys/dev/microcode/siop/ncr53cxxx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev/microcode') 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 (); } -- cgit