?login_element?

Subversion Repositories NedoOS

Rev

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

  1.     DB 1:DB 2       ; legal syntax
  2. DB 3:DB 4           ; error without --dirbol ("DB" becomes label)
  3.     DW 5 DW 6       ; error, no colon
  4. DW 7 DW 8           ; error without --dirbol and no colon ("DW" becomes label)
  5.  
  6.     OPT --dirbol
  7.     DB 1:DB 2       ; legal syntax
  8. DB 3:DB 4           ; legal syntax with --dirbol
  9.     DW 5 DW 6       ; error, no colon after DW 5
  10. DW 7 DW 8           ; error, no colon after DW 7 (but DW 7 works with --dirbol)
  11.