From af7b083fd812bccc87e6bfa6b7fe7aab8e30b5a0 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 2 Apr 1987 09:54:41 +0000 Subject: [PATCH] "word" is now always a "long" --- mach/pdp/cg/mach.h | 6 +++--- mach/pdp/cg/table | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mach/pdp/cg/mach.h b/mach/pdp/cg/mach.h index fcf7230d4..64bddd106 100644 --- a/mach/pdp/cg/mach.h +++ b/mach/pdp/cg/mach.h @@ -34,14 +34,14 @@ #define dlb_fmt "_%d" #define hol_fmt "hol%d" -#define hol_off "0%o+hol%d" +#define hol_off "0%lo+hol%d" #ifdef ACK_ASS -#define con_cst(x) fprintf(codefile,".data2 0%o\n",x) +#define con_cst(x) fprintf(codefile,".data2 0%lo\n",x) #define con_ilb(x) fprintf(codefile,".data2 %s\n",x) #define con_dlb(x) fprintf(codefile,".data2 %s\n",x) #else -#define con_cst(x) fprintf(codefile,"0%o\n",x) +#define con_cst(x) fprintf(codefile,"0%lo\n",x) #define con_ilb(x) fprintf(codefile,"%s\n",x) #define con_dlb(x) fprintf(codefile,"%s\n",x) #endif diff --git a/mach/pdp/cg/table b/mach/pdp/cg/table index 02119e75c..5b3d30c7e 100644 --- a/mach/pdp/cg/table +++ b/mach/pdp/cg/table @@ -56,7 +56,7 @@ EM_PSIZE=2 EM_BSIZE=SL TIMEFACTOR= 1/300 -FORMAT="0%o" +FORMAT="0%lo" REGISTERS: r0 = ("r0", 2), REG. -- 2.34.1