Displaying 1 result from an estimated 1 matches for "3fch".
Did you mean:
3f8h
2011 Mar 21
1
[elflink] diskstart.inc:420: error: Sector 1 overflow by 5 bytes
...da3b
Author: Feng Tang <feng.tang at intel.com>
Date: Wed Jul 14 15:55:25 2010 +0800
elflink: a lot of core/fs merge
@@ -691,16 +798,22 @@ rl_checkpt equ $ ; Must be <= 8000h
rl_checkpt_off equ ($-$$)
%ifndef DEPEND
-%if rl_checkpt_off > 3FCh ; Need one pointer in here
-%error "Sector 1 overflow"
-%endif
+ %if rl_checkpt_off > 3F6h ; Need one extent
+ %assign rl_checkpt_overflow rl_checkpt_off - 3F6h
+ %error Sector 1 overflow by rl_checkpt_overflow bytes
+ %endif
%endif
-; Sect...