diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 2007-09-07 09:44:21 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 2007-09-07 09:44:21 +0000 |
commit | 56960c2d892859acb900feb45f2bb6d25638b142 (patch) | |
tree | a207f616b77c525bd9d2ba6a17cd69c640671542 /sys/arch/amd64 | |
parent | 0536dbbe989d19fcaf01c1d0dec6c72547b0ae67 (diff) |
Comment fix. It's 0x7F ELF, not 0xFF ELF.
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/stand/biosboot/biosboot.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/stand/biosboot/biosboot.S b/sys/arch/amd64/stand/biosboot/biosboot.S index 603b64082cd..231a95edfc2 100644 --- a/sys/arch/amd64/stand/biosboot/biosboot.S +++ b/sys/arch/amd64/stand/biosboot/biosboot.S @@ -1,4 +1,4 @@ -/* $OpenBSD: biosboot.S,v 1.3 2007/05/31 18:08:13 tom Exp $ */ +/* $OpenBSD: biosboot.S,v 1.4 2007/09/07 09:44:20 weingart Exp $ */ /* * Copyright (c) 2003 Tobias Weingartner @@ -548,7 +548,7 @@ done_load: /* * Check the magic signature at the beginning of /boot. - * Since /boot is now ELF, this should be 0xFF E L F. + * Since /boot is now ELF, this should be 0x7F E L F. */ movw $(LOADADDR >> 4), %ax /* Target segment */ movw %ax, %es |