mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[ASM]
Use CR, LF and NUL in .ascii macro. svn path=/trunk/; revision=52490
This commit is contained in:
parent
fe0d2f6e05
commit
b569cc99bd
2 changed files with 4 additions and 4 deletions
|
@ -412,7 +412,7 @@ msgFreeLdr:
|
|||
.ascii "ldr not found", CR, LF, NUL
|
||||
// Sorry, need the space...
|
||||
//msgAnyKey:
|
||||
// .asciz "Press any key to restart\r\n"
|
||||
// .ascii "Press any key to restart", CR, LF, NUL
|
||||
filename:
|
||||
.ascii "FREELDR SYS"
|
||||
|
||||
|
|
|
@ -297,11 +297,11 @@ BiosCHSDriveSize:
|
|||
.long 0
|
||||
|
||||
msgDiskError:
|
||||
.asciz "Disk error\r\n"
|
||||
.ascii "Disk error", CR, LF, NUL
|
||||
msgFileSystemError:
|
||||
.asciz "File system error\r\n"
|
||||
.ascii "File system error", CR, LF, NUL
|
||||
msgAnyKey:
|
||||
.asciz "Press any key to restart\r\n"
|
||||
.ascii "Press any key to restart", CR, LF, NUL
|
||||
|
||||
.org 509 // Pad to 509 bytes
|
||||
|
||||
|
|
Loading…
Reference in a new issue