Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/x68k/stand/libsa Make the end of image address abso...
details: https://anonhg.NetBSD.org/src/rev/9dce8425b191
branches: trunk
changeset: 782884:9dce8425b191
user: isaki <isaki%NetBSD.org@localhost>
date: Sun Nov 25 04:06:59 2012 +0000
description:
Make the end of image address absolute-long.
It allows to locate the end of image higher than 0x10000.
diffstat:
sys/arch/x68k/stand/libsa/putimage.S | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (30 lines):
diff -r 2fc434034b5b -r 9dce8425b191 sys/arch/x68k/stand/libsa/putimage.S
--- a/sys/arch/x68k/stand/libsa/putimage.S Sun Nov 25 01:10:37 2012 +0000
+++ b/sys/arch/x68k/stand/libsa/putimage.S Sun Nov 25 04:06:59 2012 +0000
@@ -1,7 +1,7 @@
| file: putimage.S
| author: ITOH Yasufumi
|
-| $NetBSD: putimage.S,v 1.4 2011/02/21 02:31:59 itohy Exp $
+| $NetBSD: putimage.S,v 1.5 2012/11/25 04:06:59 isaki Exp $
#include <machine/asm.h>
#include "iocscall.h"
@@ -21,7 +21,7 @@
movel %a1@+,%a4@+
lea %pc@(img_title),%a2
- moveaw %a2@+,%a3 | only the lower word is valid
+ moveal %a2@+,%a3
1: tstb %a2@+ | skip human readable comment
jne 1b
@@ -98,7 +98,7 @@
rts
img_title:
- .word imgend1
+ .long imgend1
| compressed image data
| BSD Daemon Image, used for NetBSD boot by permission.
Home |
Main Index |
Thread Index |
Old Index