From 5472fafa56e2425c86e1e6d2973408db7f5a2078 Mon Sep 17 00:00:00 2001 From: keie Date: Tue, 23 Apr 1985 12:55:01 +0000 Subject: [PATCH] Add hoc solution of .align problem. --- mach/proto/as/comm6.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mach/proto/as/comm6.c b/mach/proto/as/comm6.c index 624b143a1..da76ed959 100644 --- a/mach/proto/as/comm6.c +++ b/mach/proto/as/comm6.c @@ -254,8 +254,9 @@ valu_t bytes; DOTGAIN += (bytes - 1) - gap; #endif } - DOTVAL += gap; - sp->s_zero += gap; + /* I don't play the os_zero game here, but plainly write out zero's */ + /* Led abuses trailing zero parts */ + while (gap--) emit1(0) ; } #ifdef RELOCATION -- 2.34.1