?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1.         MODULE TestModule
  2.  
  3.                 jp      klLDI64 ; creates full-module undefined symbol in the table (`TestModule.klLDI64`)
  4.  
  5. @klLDI64:       nop             ; defines global `klLDI64` (will overshadow the `TestModule.klLDI64`)
  6.  
  7. cmCOPY:         ex      de, hl  ; defines regular module-label `TestModule.cmCOPY`
  8.  
  9.     ; the double klLDI64 confuses here expression evaluator (bug)
  10.     ; to report forward reference warning (in sjasmplus 1.17.0)
  11.         IF      high cmCOPY > high klLDI64 : ENDIF
  12.  
  13.         ENDMODULE
  14.