Use CR, LF and NUL in .ascii macro.

svn path=/trunk/; revision=52490
This commit is contained in:
Sylvain Petreolle 2011-06-29 16:40:14 +00:00
parent fe0d2f6e05
commit b569cc99bd
2 changed files with 4 additions and 4 deletions

View file

@ -412,7 +412,7 @@ msgFreeLdr:
.ascii "ldr not found", CR, LF, NUL .ascii "ldr not found", CR, LF, NUL
// Sorry, need the space... // Sorry, need the space...
//msgAnyKey: //msgAnyKey:
// .asciz "Press any key to restart\r\n" // .ascii "Press any key to restart", CR, LF, NUL
filename: filename:
.ascii "FREELDR SYS" .ascii "FREELDR SYS"

View file

@ -297,11 +297,11 @@ BiosCHSDriveSize:
.long 0 .long 0
msgDiskError: msgDiskError:
.asciz "Disk error\r\n" .ascii "Disk error", CR, LF, NUL
msgFileSystemError: msgFileSystemError:
.asciz "File system error\r\n" .ascii "File system error", CR, LF, NUL
msgAnyKey: msgAnyKey:
.asciz "Press any key to restart\r\n" .ascii "Press any key to restart", CR, LF, NUL
.org 509 // Pad to 509 bytes .org 509 // Pad to 509 bytes