Blink.tps 255 B

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