Convert labels and strings to portable format


svn path=/trunk/; revision=53929
This commit is contained in:
Timo Kreuzer 2011-10-02 15:38:21 +00:00
parent 58e525b4b8
commit 41fe9c8d7e

View file

@ -339,14 +339,17 @@ Done:
msgDiskError db 'Disk error',0 msgDiskError:
.ascii "Disk error", NUL
// Sorry, need the space... // Sorry, need the space...
//msgAnyKey db 'Press any key to restart',0 //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 times 509-($-$$) db 0 // Pad to 509 bytes
BootPartition db 0 BootPartition:
db 0
dw 0aa55h // BootSector signature dw 0aa55h // BootSector signature
@ -654,11 +657,16 @@ DisplayItAndReboot:
call PutChars // Display it call PutChars // Display it
jmp Reboot jmp Reboot
msgFreeLdr db 'freeldr.sys not found',0 msgFreeLdr:
msgFileSize db 'File size is 0',0 .ascii "freeldr.sys not found", NUL
msgRegFile db 'freeldr.sys isnt a regular file',0 msgFileSize:
filename db 'freeldr.sys' .ascii "File size is 0", NUL
msgLoading db 'Loading FreeLoader...',0 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 times 1022-($-$$) db 0 // Pad to 1022 bytes