start.S: clang compat, don't use '\r' in asm files

Signed-off-by: Ferdinand Bachmann <theferdi265@gmail.com>
This commit is contained in:
Ferdinand Bachmann 2021-01-17 15:17:30 +01:00 committed by Hector Martin
parent 75c3cd39d4
commit 8511d9ff74

View file

@ -93,7 +93,7 @@ _start:
mov w0, '1'
bl debug_putc
mov w0, '\r'
mov w0, 0xd /* '\r', clang compat */
bl debug_putc
mov w0, '\n'
bl debug_putc
@ -106,7 +106,7 @@ _start:
.globl exc_unk
.type exc_unk, @function
exc_unk:
mov w0, '\r'
mov w0, 0xd /* '\r', clang compat */
bl debug_putc
mov w0, '\n'
bl debug_putc
@ -124,7 +124,7 @@ exc_unk:
bl debug_putc
mov w0, '!'
bl debug_putc
mov w0, '\r'
mov w0, 0xd /* '\r', clang compat */
bl debug_putc
mov w0, '\n'
bl debug_putc