Author: tkreuzer Date: Sun Oct 2 15:38:21 2011 New Revision: 53929
URL: http://svn.reactos.org/svn/reactos?rev=53929&view=rev Log: [EXT2] Convert labels and strings to portable format
Modified: trunk/reactos/boot/freeldr/bootsect/ext2.S
Modified: trunk/reactos/boot/freeldr/bootsect/ext2.S URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/bootsect/ext2.... ============================================================================== --- trunk/reactos/boot/freeldr/bootsect/ext2.S [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/bootsect/ext2.S [iso-8859-1] Sun Oct 2 15:38:21 2011 @@ -339,14 +339,17 @@
-msgDiskError db 'Disk error',0 +msgDiskError: + .ascii "Disk error", NUL // Sorry, need the space... //msgAnyKey db 'Press any key to restart',0 -msgAnyKey db 'Press any key',0 +msgAnyKey: + .ascii "Press any key", NUL
times 509-($-$$) db 0 // Pad to 509 bytes
-BootPartition db 0 +BootPartition: + db 0
dw 0aa55h // BootSector signature
@@ -654,11 +657,16 @@ call PutChars // Display it jmp Reboot
-msgFreeLdr db 'freeldr.sys not found',0 -msgFileSize db 'File size is 0',0 -msgRegFile db 'freeldr.sys isnt a regular file',0 -filename db 'freeldr.sys' -msgLoading db 'Loading FreeLoader...',0 +msgFreeLdr: + .ascii "freeldr.sys not found", NUL +msgFileSize: + .ascii "File size is 0", NUL +msgRegFile: + .ascii "freeldr.sys isnt a regular file", NUL +filename: + .ascii "freeldr.sys" +msgLoading: + .ascii "Loading FreeLoader...", NUL
times 1022-($-$$) db 0 // Pad to 1022 bytes