From 8511d9ff744b4398a83330f79eaa60f50f8e7d79 Mon Sep 17 00:00:00 2001 From: Ferdinand Bachmann Date: Sun, 17 Jan 2021 15:17:30 +0100 Subject: [PATCH] start.S: clang compat, don't use '\r' in asm files Signed-off-by: Ferdinand Bachmann --- src/start.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/start.S b/src/start.S index 58357a8e..921ebbed 100644 --- a/src/start.S +++ b/src/start.S @@ -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