From 966213238ad72cae68d20ab375b790f0ca1f2c61 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 6 Jun 1986 23:35:42 +0000 Subject: [PATCH] There was a bug in the printing of the trap number. This is corrected. --- mach/vax4/libem/trp.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mach/vax4/libem/trp.s b/mach/vax4/libem/trp.s index 0e3a5a68c..e67790371 100644 --- a/mach/vax4/libem/trp.s +++ b/mach/vax4/libem/trp.s @@ -31,8 +31,8 @@ L2: movl $5,r2 # Max number of digits. movl (sp),r0 # Trap number in r0. L3: - bicw2 $0177770,r0 # Lower 3 bits form lower octal digit. - bisb2 r0,-(r1) # Put them in the '0'. + bicw3 $0177770,r0,r3 # Lower 3 bits form lower octal digit. + bisb2 r3,-(r1) # Put them in the '0'. ashl $-3,r0,r0 # Shift the 3 bits off. sobgtr r2,L3 movl ap,r2 -- 2.34.1