]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ARM Packages: Minor changes (fixed mispelling, line endings, incorrect comments)
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 2 May 2012 19:46:40 +0000 (19:46 +0000)
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 2 May 2012 19:46:40 +0000 (19:46 +0000)
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13243 6f19259b-4bc3-4df7-8a09-765794883524

ArmPkg/Library/SemihostLib/Arm/SemihostLib.c
ArmPlatformPkg/ArmRealViewEbPkg/Library/NorFlashArmRealViewEbLib/NorFlashArmRealViewEbLib.inf
ArmPlatformPkg/ArmVExpressPkg/ArmVExpressPkg.dec
ArmPlatformPkg/ArmVExpressPkg/Library/PL111LcdArmVExpressLib/PL111LcdArmVExpressLib.inf
ArmPlatformPkg/Bds/Bds.inf
ArmPlatformPkg/PrePi/ModuleEntryPoint.S
ArmPlatformPkg/PrePi/ModuleEntryPoint.asm
BeagleBoardPkg/Bds/Bds.inf

index cea6298a8d88b43b7be798f71a14c956facfbd09..01b6dc334d4997258d2df400ea41241407ee738e 100644 (file)
-/** @file
-
-  Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
-  
-  This program and the accompanying materials
-  are licensed and made available under the terms and conditions of the BSD License
-  which accompanies this distribution.  The full text of the license may be found at
-  http://opensource.org/licenses/bsd-license.php
-
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-#include <Base.h>
-
-#include <Library/BaseLib.h>
-#include <Library/SemihostLib.h>
-
-#include "SemihostPrivate.h"
-
-BOOLEAN
-SemihostConnectionSupported (
-  VOID
-  )
-{
-  return SEMIHOST_SUPPORTED;
-}
-
-RETURN_STATUS
-SemihostFileOpen (
-  IN  CHAR8  *FileName,
-  IN  UINT32 Mode,
-  OUT UINT32 *FileHandle
-  )
-{
-  SEMIHOST_FILE_OPEN_BLOCK  OpenBlock;
-  INT32                     Result;
-
-  if (FileHandle == NULL) {
-    return RETURN_INVALID_PARAMETER;
-  }
-
-  OpenBlock.FileName    = FileName;
-  OpenBlock.Mode        = Mode;
-  OpenBlock.NameLength  = AsciiStrLen(FileName);
-
-  Result = Semihost_SYS_OPEN(&OpenBlock);
-
-  if (Result == -1) {
-    return RETURN_NOT_FOUND;
-  } else {
-    *FileHandle = Result;
-    return RETURN_SUCCESS;
-  }
-}
-
-RETURN_STATUS
-SemihostFileSeek (
-  IN UINT32 FileHandle,
-  IN UINT32 Offset
-  )
-{
-  SEMIHOST_FILE_SEEK_BLOCK  SeekBlock;
-  INT32                     Result;
-
-  SeekBlock.Handle   = FileHandle;
-  SeekBlock.Location = Offset;
-
-  Result = Semihost_SYS_SEEK(&SeekBlock);
-
-  if (Result == 0) {
-    return RETURN_SUCCESS;
-  } else {
-    return RETURN_ABORTED;
-  }
-}
-
-RETURN_STATUS
-SemihostFileRead (
-  IN     UINT32 FileHandle,
-  IN OUT UINT32 *Length,
-  OUT    VOID   *Buffer
-  )
-{
-  SEMIHOST_FILE_READ_WRITE_BLOCK  ReadBlock;
-  UINT32                          Result;
-
-  if ((Length == NULL) || (Buffer == NULL)) {
-    return RETURN_INVALID_PARAMETER;
-  }
-
-  ReadBlock.Handle = FileHandle;
-  ReadBlock.Buffer = Buffer;
-  ReadBlock.Length = *Length;
-
-  Result = Semihost_SYS_READ(&ReadBlock);
-
-  if (Result == *Length) {
-    return RETURN_ABORTED;
-  } else {
-    *Length -= Result;
-    return RETURN_SUCCESS;
-  }
-}
-
-RETURN_STATUS
-SemihostFileWrite (
-  IN     UINT32 FileHandle,
-  IN OUT UINT32 *Length,
-  IN     VOID   *Buffer
-  )
-{
-  SEMIHOST_FILE_READ_WRITE_BLOCK  WriteBlock;
-
-  if ((Length == NULL) || (Buffer == NULL)) {
-    return RETURN_INVALID_PARAMETER;
-  }
-
-  WriteBlock.Handle = FileHandle;
-  WriteBlock.Buffer = Buffer;
-  WriteBlock.Length = *Length;
-
-  *Length = Semihost_SYS_WRITE(&WriteBlock);
-  
-  return RETURN_SUCCESS;
-}
-
-RETURN_STATUS
-SemihostFileClose (
-  IN UINT32 FileHandle
-  )
-{
-  INT32 Result = Semihost_SYS_CLOSE(&FileHandle);
-
-  if (Result == -1) {
-    return RETURN_INVALID_PARAMETER;
-  } else {
-    return RETURN_SUCCESS;
-  }
-}
-
-RETURN_STATUS
-SemihostFileLength (
-  IN  UINT32 FileHandle,
-  OUT UINT32 *Length
-  )
-{
-  INT32       Result;
-
-  if (Length == NULL) {
-    return RETURN_INVALID_PARAMETER;
-  }
-
-  Result = Semihost_SYS_FLEN(&FileHandle);
-
-  if (Result == -1) {
-    return RETURN_ABORTED;
-  } else {
-    *Length = Result;
-    return RETURN_SUCCESS;
-  }
-}
-
-RETURN_STATUS
-SemihostFileRemove (
-  IN CHAR8 *FileName
-  )
-{
-  SEMIHOST_FILE_REMOVE_BLOCK  RemoveBlock;
-  UINT32                      Result;
-
-  RemoveBlock.FileName    = FileName;
-  RemoveBlock.NameLength  = AsciiStrLen(FileName);
-
-  Result = Semihost_SYS_REMOVE(&RemoveBlock);
-
-  if (Result == 0) {
-    return RETURN_SUCCESS;
-  } else {
-    return RETURN_ABORTED;
-  }
-}
-
-CHAR8
-SemihostReadCharacter (
-  VOID
-  )
-{
-  return Semihost_SYS_READC();
-}
-
-VOID
-SemihostWriteCharacter (
-  IN CHAR8 Character
-  )
-{
-  Semihost_SYS_WRITEC(&Character);
-}
-
-VOID
-SemihostWriteString (
-  IN CHAR8 *String
-  )
-{
-  Semihost_SYS_WRITE0(String);
-}
-  
-UINT32
-SemihostSystem (
-  IN CHAR8 *CommandLine
-  )
-{
-  SEMIHOST_SYSTEM_BLOCK SystemBlock;
-
-  SystemBlock.CommandLine   = CommandLine;
-  SystemBlock.CommandLength = AsciiStrLen(CommandLine);
-
-  return Semihost_SYS_SYSTEM(&SystemBlock);
-}
+/** @file\r
+\r
+  Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
+  \r
+  This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+#include <Base.h>\r
+\r
+#include <Library/BaseLib.h>\r
+#include <Library/SemihostLib.h>\r
+\r
+#include "SemihostPrivate.h"\r
+\r
+BOOLEAN\r
+SemihostConnectionSupported (\r
+  VOID\r
+  )\r
+{\r
+  return SEMIHOST_SUPPORTED;\r
+}\r
+\r
+RETURN_STATUS\r
+SemihostFileOpen (\r
+  IN  CHAR8  *FileName,\r
+  IN  UINT32 Mode,\r
+  OUT UINT32 *FileHandle\r
+  )\r
+{\r
+  SEMIHOST_FILE_OPEN_BLOCK  OpenBlock;\r
+  INT32                     Result;\r
+\r
+  if (FileHandle == NULL) {\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  OpenBlock.FileName    = FileName;\r
+  OpenBlock.Mode        = Mode;\r
+  OpenBlock.NameLength  = AsciiStrLen(FileName);\r
+\r
+  Result = Semihost_SYS_OPEN(&OpenBlock);\r
+\r
+  if (Result == -1) {\r
+    return RETURN_NOT_FOUND;\r
+  } else {\r
+    *FileHandle = Result;\r
+    return RETURN_SUCCESS;\r
+  }\r
+}\r
+\r
+RETURN_STATUS\r
+SemihostFileSeek (\r
+  IN UINT32 FileHandle,\r
+  IN UINT32 Offset\r
+  )\r
+{\r
+  SEMIHOST_FILE_SEEK_BLOCK  SeekBlock;\r
+  INT32                     Result;\r
+\r
+  SeekBlock.Handle   = FileHandle;\r
+  SeekBlock.Location = Offset;\r
+\r
+  Result = Semihost_SYS_SEEK(&SeekBlock);\r
+\r
+  if (Result == 0) {\r
+    return RETURN_SUCCESS;\r
+  } else {\r
+    return RETURN_ABORTED;\r
+  }\r
+}\r
+\r
+RETURN_STATUS\r
+SemihostFileRead (\r
+  IN     UINT32 FileHandle,\r
+  IN OUT UINT32 *Length,\r
+  OUT    VOID   *Buffer\r
+  )\r
+{\r
+  SEMIHOST_FILE_READ_WRITE_BLOCK  ReadBlock;\r
+  UINT32                          Result;\r
+\r
+  if ((Length == NULL) || (Buffer == NULL)) {\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  ReadBlock.Handle = FileHandle;\r
+  ReadBlock.Buffer = Buffer;\r
+  ReadBlock.Length = *Length;\r
+\r
+  Result = Semihost_SYS_READ(&ReadBlock);\r
+\r
+  if (Result == *Length) {\r
+    return RETURN_ABORTED;\r
+  } else {\r
+    *Length -= Result;\r
+    return RETURN_SUCCESS;\r
+  }\r
+}\r
+\r
+RETURN_STATUS\r
+SemihostFileWrite (\r
+  IN     UINT32 FileHandle,\r
+  IN OUT UINT32 *Length,\r
+  IN     VOID   *Buffer\r
+  )\r
+{\r
+  SEMIHOST_FILE_READ_WRITE_BLOCK  WriteBlock;\r
+\r
+  if ((Length == NULL) || (Buffer == NULL)) {\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  WriteBlock.Handle = FileHandle;\r
+  WriteBlock.Buffer = Buffer;\r
+  WriteBlock.Length = *Length;\r
+\r
+  *Length = Semihost_SYS_WRITE(&WriteBlock);\r
+  \r
+  return RETURN_SUCCESS;\r
+}\r
+\r
+RETURN_STATUS\r
+SemihostFileClose (\r
+  IN UINT32 FileHandle\r
+  )\r
+{\r
+  INT32 Result = Semihost_SYS_CLOSE(&FileHandle);\r
+\r
+  if (Result == -1) {\r
+    return RETURN_INVALID_PARAMETER;\r
+  } else {\r
+    return RETURN_SUCCESS;\r
+  }\r
+}\r
+\r
+RETURN_STATUS\r
+SemihostFileLength (\r
+  IN  UINT32 FileHandle,\r
+  OUT UINT32 *Length\r
+  )\r
+{\r
+  INT32       Result;\r
+\r
+  if (Length == NULL) {\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  Result = Semihost_SYS_FLEN(&FileHandle);\r
+\r
+  if (Result == -1) {\r
+    return RETURN_ABORTED;\r
+  } else {\r
+    *Length = Result;\r
+    return RETURN_SUCCESS;\r
+  }\r
+}\r
+\r
+RETURN_STATUS\r
+SemihostFileRemove (\r
+  IN CHAR8 *FileName\r
+  )\r
+{\r
+  SEMIHOST_FILE_REMOVE_BLOCK  RemoveBlock;\r
+  UINT32                      Result;\r
+\r
+  RemoveBlock.FileName    = FileName;\r
+  RemoveBlock.NameLength  = AsciiStrLen(FileName);\r
+\r
+  Result = Semihost_SYS_REMOVE(&RemoveBlock);\r
+\r
+  if (Result == 0) {\r
+    return RETURN_SUCCESS;\r
+  } else {\r
+    return RETURN_ABORTED;\r
+  }\r
+}\r
+\r
+CHAR8\r
+SemihostReadCharacter (\r
+  VOID\r
+  )\r
+{\r
+  return Semihost_SYS_READC();\r
+}\r
+\r
+VOID\r
+SemihostWriteCharacter (\r
+  IN CHAR8 Character\r
+  )\r
+{\r
+  Semihost_SYS_WRITEC(&Character);\r
+}\r
+\r
+VOID\r
+SemihostWriteString (\r
+  IN CHAR8 *String\r
+  )\r
+{\r
+  Semihost_SYS_WRITE0(String);\r
+}\r
+  \r
+UINT32\r
+SemihostSystem (\r
+  IN CHAR8 *CommandLine\r
+  )\r
+{\r
+  SEMIHOST_SYSTEM_BLOCK SystemBlock;\r
+\r
+  SystemBlock.CommandLine   = CommandLine;\r
+  SystemBlock.CommandLength = AsciiStrLen(CommandLine);\r
+\r
+  return Semihost_SYS_SYSTEM(&SystemBlock);\r
+}\r
index 2ee50665494f5992d7ebb69bd4ef4111d0d7dfb2..9a68da96ac7f090624cb01096c6fff689aeb92a4 100644 (file)
@@ -1,8 +1,9 @@
 #/** @file
 #  
-#  Component description file for ArmVeGraphicsDxe module
+#  Component description file for NorFlashArmRealViewEbLib module
 #  
 #  Copyright (c) 2011-2012, ARM Ltd. All rights reserved.<BR>
+#
 #  This program and the accompanying materials
 #  are licensed and made available under the terms and conditions of the BSD License
 #  which accompanies this distribution.  The full text of the license may be found at
index 12c57101b14fa2e05d7f53499b7087c9733cf7da..88b2113dcb4b56d28ab3525d7b64be354f78582e 100644 (file)
@@ -1,51 +1,51 @@
-#/** @file
-# Arm Versatile Express package.
-#
-#  Copyright (c) 2011, ARM Limited. All rights reserved.
-#  
-#  This program and the accompanying materials                          
-#  are licensed and made available under the terms and conditions of the BSD License         
-#  which accompanies this distribution.  The full text of the license may be found at        
-#  http://opensource.org/licenses/bsd-license.php                                            
-#
-#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     
-#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             
-#
-#**/
-
-[Defines]
-  DEC_SPECIFICATION              = 0x00010005
-  PACKAGE_NAME                   = ArmVExpressPkg
-  PACKAGE_GUID                   = 9c0aaed4-74c5-4043-b417-a3223814ce76 
-  PACKAGE_VERSION                = 0.1
-
-################################################################################
-#
-# Include Section - list of Include Paths that are provided by this package.
-#                   Comments are used for Keywords and Module Types.
-#
-# Supported Module Types:
-#  BASE SEC PEI_CORE PEIM DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER DXE_SAL_DRIVER UEFI_DRIVER UEFI_APPLICATION
-#
-################################################################################
-[Includes.common]
-  Include                        # Root include for the package
-
-[Guids.common]
-  gArmVExpressTokenSpaceGuid    =  { 0x9c0aaed4, 0x74c5, 0x4043, { 0xb4, 0x17, 0xa3, 0x22, 0x38, 0x14, 0xce, 0x76 } }
-  #
-  # Following Guid must match FILE_GUID in MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
-  #
-  gVariableRuntimeDxeFileGuid = { 0xcbd2e4d5, 0x7068, 0x4ff5, { 0xb4, 0x62, 0x98, 0x22, 0xb4, 0xad, 0x8d, 0x60 } }
-
-[PcdsFeatureFlag.common]
-
-[PcdsFixedAtBuild.common]
-  #
-  # MaxMode must be one number higher than the actual max mode,
-  # i.e. for actual maximum mode 2, set the value to 3.
-  #
-  # For a list of mode numbers look in LcdArmVExpress.c
-  #
-  gArmVExpressTokenSpaceGuid.PcdPL111LcdMaxMode|3|UINT32|0x00000003
-  gArmVExpressTokenSpaceGuid.PcdPL111LcdVideoModeOscId|1|UINT32|0x00000004
+#/** @file\r
+# Arm Versatile Express package.\r
+#\r
+#  Copyright (c) 2012, ARM Limited. All rights reserved.\r
+#  \r
+#  This program and the accompanying materials                          \r
+#  are licensed and made available under the terms and conditions of the BSD License         \r
+#  which accompanies this distribution.  The full text of the license may be found at        \r
+#  http://opensource.org/licenses/bsd-license.php                                            \r
+#\r
+#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
+#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
+#\r
+#**/\r
+\r
+[Defines]\r
+  DEC_SPECIFICATION              = 0x00010005\r
+  PACKAGE_NAME                   = ArmVExpressPkg\r
+  PACKAGE_GUID                   = 9c0aaed4-74c5-4043-b417-a3223814ce76 \r
+  PACKAGE_VERSION                = 0.1\r
+\r
+################################################################################\r
+#\r
+# Include Section - list of Include Paths that are provided by this package.\r
+#                   Comments are used for Keywords and Module Types.\r
+#\r
+# Supported Module Types:\r
+#  BASE SEC PEI_CORE PEIM DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER DXE_SAL_DRIVER UEFI_DRIVER UEFI_APPLICATION\r
+#\r
+################################################################################\r
+[Includes.common]\r
+  Include                        # Root include for the package\r
+\r
+[Guids.common]\r
+  gArmVExpressTokenSpaceGuid    =  { 0x9c0aaed4, 0x74c5, 0x4043, { 0xb4, 0x17, 0xa3, 0x22, 0x38, 0x14, 0xce, 0x76 } }\r
+  #\r
+  # Following Guid must match FILE_GUID in MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf\r
+  #\r
+  gVariableRuntimeDxeFileGuid = { 0xcbd2e4d5, 0x7068, 0x4ff5, { 0xb4, 0x62, 0x98, 0x22, 0xb4, 0xad, 0x8d, 0x60 } }\r
+\r
+[PcdsFeatureFlag.common]\r
+\r
+[PcdsFixedAtBuild.common]\r
+  #\r
+  # MaxMode must be one number higher than the actual max mode,\r
+  # i.e. for actual maximum mode 2, set the value to 3.\r
+  #\r
+  # For a list of mode numbers look in LcdArmVExpress.c\r
+  #\r
+  gArmVExpressTokenSpaceGuid.PcdPL111LcdMaxMode|3|UINT32|0x00000003\r
+  gArmVExpressTokenSpaceGuid.PcdPL111LcdVideoModeOscId|1|UINT32|0x00000004\r
index 5e2dea8a0510fb47ed7998fdc104996830e441f0..c9b6a98c2c6168396815bedd90f7ee4696272b8f 100644 (file)
@@ -3,6 +3,7 @@
 #  Component description file for ArmVeGraphicsDxe module
 #  
 #  Copyright (c) 2011-2012, ARM Ltd. All rights reserved.<BR>
+#
 #  This program and the accompanying materials
 #  are licensed and made available under the terms and conditions of the BSD License
 #  which accompanies this distribution.  The full text of the license may be found at
index 6e9516e4036cba3665ec3d32bc9f31509d6a8033..164e2ae526fd5c03c1d8384ff30320abc71cbc2e 100644 (file)
@@ -3,6 +3,7 @@
 #  Component description file for Bds module
 #  
 #  Copyright (c) 2011-2012, ARM Ltd. All rights reserved.<BR>
+#
 #  This program and the accompanying materials
 #  are licensed and made available under the terms and conditions of the BSD License
 #  which accompanies this distribution.  The full text of the license may be found at
index c10dfbaf0f92533b0ea00ea64b2ba9daec48cd72..bff240a660bc5ef775ee34cce16db967ceb3206d 100755 (executable)
@@ -107,6 +107,7 @@ _GetStackBaseMpCore:
   // Stack for the primary core = PrimaryCoreStack\r
   LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), r2)\r
   sub   r7, r1, r2\r
+\r
   // Stack for the secondary core = Number of Cluster * (4 Core per cluster) * SecondaryStackSize\r
   LoadConstantToReg (FixedPcdGet32(PcdClusterCount), r2)\r
   lsl   r2, r2, #2\r
@@ -118,7 +119,7 @@ _GetStackBaseMpCore:
   LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), r2)\r
   add   r1, r7, r2\r
 \r
-  // r7 = The base of the MpCore Stacks\r
+  // r7 = The base of the MpCore Stacks (primary stack + cluster_count * 4 * secondary stacks)\r
   // r1 = The base of the secondary Stacks = Top of the Primary stack\r
 \r
   // Is it the Primary Core ?\r
index ba82f403f7fe1a99255b119f6715c7c7de4f1802..1e1938c8f3b5d1596f42db6456038a27c069a420 100644 (file)
@@ -108,6 +108,7 @@ _GetStackBaseMpCore
   // Stack for the primary core = PrimaryCoreStack\r
   LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), r2)\r
   sub   r7, r1, r2\r
+\r
   // Stack for the secondary core = Number of Cluster * (4 Core per cluster) * SecondaryStackSize\r
   LoadConstantToReg (FixedPcdGet32(PcdClusterCount), r2)\r
   lsl   r2, r2, #2\r
@@ -119,7 +120,7 @@ _GetStackBaseMpCore
   LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), r2)\r
   add   r1, r7, r2\r
 \r
-  // r7 = The base of the MpCore Stacks\r
+  // r7 = The base of the MpCore Stacks (primary stack + cluster_count * 4 * secondary stacks)\r
   // r1 = The base of the secondary Stacks = Top of the Primary stack\r
 \r
   // Is it the Primary Core ?\r
index 1b37f0e2f49f096fb9bd74f00eeb434843b2285c..093559c7cb49a38991a7ea855387bfa199e2f9dd 100644 (file)
@@ -1,7 +1,7 @@
 \r
 #/** @file\r
 #  \r
-#    Component discription file for Bds module\r
+#    Component description file for Bds module\r
 #  \r
 #  Copyright (c) 2009, Apple Inc. All rights reserved.<BR>\r
 #\r