summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/locore.S8
-rw-r--r--sys/ia64/ia64/locore.s8
2 files changed, 10 insertions, 6 deletions
diff --git a/sys/ia64/ia64/locore.S b/sys/ia64/ia64/locore.S
index 726586d..ce991e8 100644
--- a/sys/ia64/ia64/locore.S
+++ b/sys/ia64/ia64/locore.S
@@ -360,9 +360,11 @@ EXPORT(intrnames)
.byte 0
intr_n = 0
.rept INTRCNT_COUNT - 1
- .ascii "intr "
- .byte intr_n / 10 + '0, intr_n % 10 + '0
- .fill INTRNAME_LEN - 5 - 2 - 1, 1, ' '
+ .ascii "#"
+ .byte intr_n / 100 + '0
+ .byte (intr_n % 100) / 10 + '0
+ .byte intr_n % 10 + '0
+ .fill INTRNAME_LEN - 1 - 3 - 1, 1, ' '
.byte 0
intr_n = intr_n + 1
.endr
diff --git a/sys/ia64/ia64/locore.s b/sys/ia64/ia64/locore.s
index 726586d..ce991e8 100644
--- a/sys/ia64/ia64/locore.s
+++ b/sys/ia64/ia64/locore.s
@@ -360,9 +360,11 @@ EXPORT(intrnames)
.byte 0
intr_n = 0
.rept INTRCNT_COUNT - 1
- .ascii "intr "
- .byte intr_n / 10 + '0, intr_n % 10 + '0
- .fill INTRNAME_LEN - 5 - 2 - 1, 1, ' '
+ .ascii "#"
+ .byte intr_n / 100 + '0
+ .byte (intr_n % 100) / 10 + '0
+ .byte intr_n % 10 + '0
+ .fill INTRNAME_LEN - 1 - 3 - 1, 1, ' '
.byte 0
intr_n = intr_n + 1
.endr
OpenPOWER on IntegriCloud