Blink.tps 211 B

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