mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
start.S: clang compat, don't use '\r' in asm files
Signed-off-by: Ferdinand Bachmann <theferdi265@gmail.com>
This commit is contained in:
parent
75c3cd39d4
commit
8511d9ff74
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue