mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 13:45:56 +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
|
.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"
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue