Rev 539 | Blame | Compare with Previous | Last modification | View Log | Download
# file opened: dir_export.asmdir_export.asm(1): error: [EXPORT] Syntax error:1 0000 EXPORT ; syntax errordir_export.asm(2): error: [EXPORT] Syntax error: !2 0000 EXPORT ! ; syntax error 2dir_export.asm(3): error: Label not found: nonExistentLabel3 0000 EXPORT nonExistentLabel ; label not found error4 0000 EXPORT fwdRefNormaldir_export.asm(5): error: Label not found: _.fwdRefLocal5 0000 EXPORT .fwdRefLocal ; this is error, the main label here is undefined ("_")6 0000 EXPORT fwdRefNormal.fwdRefLocaldir_export.asm(7): error: [EXPORT] Syntax error: @fwdRefNormal.fwdRefLocal7 0000 EXPORT @fwdRefNormal.fwdRefLocal ; "@" is not supported in EXPORT ???!?!8 0000 EXPORT fwdRefEqu9 0000 EXPORT fwdRefDefl10 0000 ORG 0x123411 1234 00 fwdRefNormal: nop12 1235 ED B0 .fwdRefLocal: ldir13 1237 fwdRefEqu: EQU 0x234514 1237 fwdRefDefl: DEFL 0x345615 1237 00 LabelNormal: nop16 1238 ED B0 .LabelLocal: ldir17 123A LabelEqu: EQU 0x2345+118 123A LabelDefl: DEFL 0x3456+119 123A .EXPORT LabelNormaldir_export.asm(20): error: Label not found: LabelDefl.LabelLocal20 123A .EXPORT .LabelLocal ; this is error, it will try to find LabelDefl.LabelLocal21 123A .EXPORT LabelNormal.LabelLocaldir_export.asm(22): error: [EXPORT] Syntax error: @LabelNormal.LabelLocal22 123A .EXPORT @LabelNormal.LabelLocal23 123A export LabelEqu24 123A .export LabelDefl25 123A EXPORT LabelNormal ; double export is not problem of sjasmplus, but coder26 123A27 123A ; check if the exports are always global28 123A EXPORT aha.hehe.hihi29 123A MODULE aha30 123A EXPORT aha.hehe.hoho31 123A hehe32 123A .hihi33 123A .hoho34 123A ENDMODULE# file closed: dir_export.asmValue Label------ - -----------------------------------------------------------0x123A X aha.hehe0x123A X aha.hehe.hihi0x123A X aha.hehe.hoho0x3456 X fwdRefDefl0x2345 X fwdRefEqu0x1234 X fwdRefNormal0x1235 X fwdRefNormal.fwdRefLocal0x3457 X LabelDefl0x2346 X LabelEqu0x1237 X LabelNormal0x1238 X LabelNormal.LabelLocal