diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ia64/ia64/locore.S | 6 | ||||
-rw-r--r-- | sys/ia64/ia64/locore.s | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/ia64/ia64/locore.S b/sys/ia64/ia64/locore.S index 11e5c70..61671b6 100644 --- a/sys/ia64/ia64/locore.S +++ b/sys/ia64/ia64/locore.S @@ -358,9 +358,9 @@ EXPORT(intrnames) intr_n = 0 .rept INTRCNT_COUNT - 1 .ascii "#" - .byte intr_n / 100 + '0 - .byte (intr_n % 100) / 10 + '0 - .byte intr_n % 10 + '0 + .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 diff --git a/sys/ia64/ia64/locore.s b/sys/ia64/ia64/locore.s index 11e5c70..61671b6 100644 --- a/sys/ia64/ia64/locore.s +++ b/sys/ia64/ia64/locore.s @@ -358,9 +358,9 @@ EXPORT(intrnames) intr_n = 0 .rept INTRCNT_COUNT - 1 .ascii "#" - .byte intr_n / 100 + '0 - .byte (intr_n % 100) / 10 + '0 - .byte intr_n % 10 + '0 + .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 |