So I want to replace a standard function in the C51S library. Shouldn't be too hard, right? I rewrote the function (?C?LMUL to be specific) in assembly and compiled it using the A51 assembler. (processes it without complaint) The code looks like this:
; Segment Definition ?C?LMUL SEGMENT CODE ; Module Start RSEG ?C?LMUL MOV ... ... END
LIB51 DELETE C51S.LIB (?C?LMUL)
LIB51 ADD NEW_LMUL.OBJ (?C?LMUL) TO C51S.LIB >> ERR 223 CANNOT FIND MODULE
LIB51 ADD NEW_LMUL.OBJ TO C51S.LIB LIB51 LIST C51S.LIB