?login_element?

Subversion Repositories NedoOS

Rev

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

  1. ;; Example of using BasicLib.asm
  2. ;;
  3. ;;     Line numbering control
  4. ;;
  5. ;; =============================
  6.  
  7.         INCLUDE BasicLib.asm
  8.  
  9. line_number = 0
  10. line_step   = 1
  11.  
  12.         LINE : db rem,'First line'  : LEND
  13.         LINE : db rem,'Second line' : LEND
  14.         LINE : db rem,'Third line'  : LEND
  15.  
  16. line_number = 100
  17. line_step   = 20
  18.  
  19.         LINE : db rem,'Another numbers'   : LEND
  20.         LINE : db rem,'with another step' : LEND
  21.  
  22.  
  23. ;; Generated basic:
  24. ;;
  25. ;;    0 REM First line
  26. ;;    1 REM Second line
  27. ;;    2 REM Third line
  28. ;;  100 REM Another numbers
  29. ;;  120 REM with another step
  30.