Blink.tps 286 B

1234567891011121314151617181920212223
  1. /*
  2. Kommentar über mehrere Zeilen
  3. */
  4. .macro macro1 output time
  5. PORT output
  6. WAIT time
  7. PORT #0x00
  8. WAIT time
  9. .endmacro
  10. .include macro_blink
  11. :loop
  12. .macro1 #0x0f 200ms
  13. PORT #0x0F ;Zeilenkommentar
  14. WAIT 200ms
  15. PORT #0x00
  16. WAIT 200ms
  17. RJMP :loop
  18. .macro empty
  19. .endmacro