?login_element?

Subversion Repositories NedoOS

Rev

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

  1.     macro prn6x8f_simple
  2.     endm
  3.  
  4.     ; error - duplicate macro name, ignoring this definition
  5.     macro prn6x8f_simple FontAddr, shift
  6.     endm
  7.  
  8.     macro prn6x8f_loop FontAddr
  9.         ; error, too many arguments -> but should recover from it, 1.18.3 will hard-crash due to losing FontAddr
  10.         prn6x8f_simple FontAddr, 1
  11.         ; same error as previous line, FontAddr should be correctly substituted (in 1.18.3 it's lost)
  12.         prn6x8f_simple FontAddr, 2
  13.     endm
  14.  
  15.     macro print6x8_84_fast FontAddr
  16.         prn6x8f_loop FontAddr
  17.     endm
  18.  
  19. start print6x8_84_fast $c000
  20.