--- truecrypt/boot/windows/bootcrt.asm 2018/04/24 16:49:04 1.1 +++ truecrypt/boot/windows/bootcrt.asm 2018/04/24 17:07:45 1.1.1.7 @@ -1,9 +1,9 @@ ; -; Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. +; Copyright (c) 2008 TrueCrypt Developers Association. All rights reserved. ; -; Governed by the TrueCrypt License 2.4 the full text of which is contained -; in the file License.txt included in TrueCrypt binary and source code -; distribution packages. +; Governed by the TrueCrypt License 2.8 the full text of which is contained in +; the file License.txt included in TrueCrypt binary and source code distribution +; packages. ; .MODEL tiny, C @@ -14,11 +14,10 @@ INCLUDE BootDefs.i EXTERNDEF main:NEAR _TEXT SEGMENT -ORG TC_BOOT_LOADER_OFFSET +ORG TC_COM_EXECUTABLE_OFFSET start: - call main - jmp $ + jmp main _TEXT ENDS END start