Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.sbin/gspa/gspa TMS340x0 adresses are unsigned
details: https://anonhg.NetBSD.org/src/rev/079e767d933f
branches: trunk
changeset: 473940:079e767d933f
user: is <is%NetBSD.org@localhost>
date: Tue Jun 22 20:00:47 1999 +0000
description:
TMS340x0 adresses are unsigned
diffstat:
usr.sbin/gspa/gspa/gsp_ass.h | 4 ++--
usr.sbin/gspa/gspa/gsp_out.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 133ebc4813e2 -r 079e767d933f usr.sbin/gspa/gspa/gsp_ass.h
--- a/usr.sbin/gspa/gspa/gsp_ass.h Tue Jun 22 18:47:07 1999 +0000
+++ b/usr.sbin/gspa/gspa/gsp_ass.h Tue Jun 22 20:00:47 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gsp_ass.h,v 1.3 1997/10/17 06:58:49 lukem Exp $ */
+/* $NetBSD: gsp_ass.h,v 1.4 1999/06/22 20:00:47 is Exp $ */
/*
* GSP assembler - definitions
*
@@ -157,7 +157,7 @@
void reset_numeric_labels(void);
void set_label(char *);
void set_numeric_label(int);
-void start_at(int32_t);
+void start_at(u_int32_t);
void statement(char *opcode, operand operands);
operand string_op(char *);
void ucasify(char *);
diff -r 133ebc4813e2 -r 079e767d933f usr.sbin/gspa/gspa/gsp_out.c
--- a/usr.sbin/gspa/gspa/gsp_out.c Tue Jun 22 18:47:07 1999 +0000
+++ b/usr.sbin/gspa/gspa/gsp_out.c Tue Jun 22 20:00:47 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gsp_out.c,v 1.3 1997/10/17 06:59:04 lukem Exp $ */
+/* $NetBSD: gsp_out.c,v 1.4 1999/06/22 20:00:47 is Exp $ */
/*
* GSP assembler - binary & listing output
*
@@ -33,7 +33,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: gsp_out.c,v 1.3 1997/10/17 06:59:04 lukem Exp $");
+__RCSID("$NetBSD: gsp_out.c,v 1.4 1999/06/22 20:00:47 is Exp $");
#endif
#include <stdio.h>
@@ -103,7 +103,7 @@
}
void
-start_at(int32_t val)
+start_at(u_int32_t val)
{
if( objfile != NULL )
fprintf(objfile, ":%lX\n", (long)val);
Home |
Main Index |
Thread Index |
Old Index