?login_element?

Subversion Repositories NedoOS

Rev

Rev 126 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.     MACRO m1
  2.         ; commentA
  3.         nop ; comment1
  4.         ; commentB
  5.         nop ; comment2
  6.         nop ; comment3
  7.     ENDM
  8.  
  9.     MACRO m2
  10.         nop     ; with its own comment m2.nop
  11.     ENDM
  12.  
  13.     MACRO m3    ; without comment on code line
  14.         nop
  15.     ENDM
  16.  
  17.     m1
  18.  
  19.     scf     ; main line m2_1 with comment
  20.     m2
  21.  
  22.     daa     ; main line m2_2 with comment
  23.     m2      ; macro emit m2_2 with comment
  24.  
  25.     ccf
  26.     m2      ; macro emit m2_3 with comment
  27.  
  28.     scf     ; main line m3_1 with comment
  29.     m3
  30.  
  31.     daa     ; main line m3_2 with comment
  32.     m3      ; macro emit m3_2 with comment
  33.  
  34.     ccf
  35.     m3      ; macro emit m3_3 with comment
  36.