标题: 搞不定啊,求救~ [打印本页] 作者: kft2003 时间: 2009-12-15 08:54 标题: 搞不定啊,求救~ 编程的时候出现这样的错误:Link Error1907:Fixup overflow in_Vector_13,to ICO type 1,at offset 0x0
有谁知道这是怎么回事儿啊?作者: jakerroo 时间: 2009-12-15 09:11
到帮助里,看看错误1907是什么错误作者: ryan1984 时间: 2009-12-15 10:54
极有可能新建工程时没有选中那个float is IEEE32 double is ~那个选项,而程序中使用了float或double型变量的原因作者: 法拉利 时间: 2009-12-15 19:20
呵呵,我也不懂啊。。。作者: zdhly0401 时间: 2009-12-15 20:29
仔细检查问题,没遇到过你这种情况,可能中断没写对作者: happyfaceforyou 时间: 2009-12-18 11:30
同意五楼的 http://www.mcuol.com/download/128/2213.htm作者: 小什羊 时间: 2010-4-4 11:15
没有遇到这种情况的路过...作者: linyujin 时间: 2011-3-21 15:20
Description
An illegal relocation of an object is detected in the object file <Object> at address <Address>. The type of the object is given in <objType>.
Tips
Check the relocation at that address. The offset may be out of range for this relocation type. If not it may be caused by a corrupt object file.
Check if all objects are allocated in the correct area. Is the object correctly declared?
This error might occur if the zero paged variables are allocated out of the zero page.作者: linyujin 时间: 2011-3-21 15:20
Description
An illegal relocation of an object is detected in the object file <Object> at address <Address>. The type of the object is given in <objType>.
Tips
Check the relocation at that address. The offset may be out of range for this relocation type. If not it may be caused by a corrupt object file.
Check if all objects are allocated in the correct area. Is the object correctly declared?
This error might occur if the zero paged variables are allocated out of the zero page.作者: 294522957abc 时间: 2013-3-29 01:04
在中断函数前面加上#pragma CODE_SEG __NEAR_SEG NON_BANKED //中断函数置于非分页区内作者: 1102252970 时间: 2013-5-13 09:29