12345678910111213141516171819 |
- /*
- Kommentar über mehrere Zeilen
- */
- .include macro_blink
- :loop
- .macro1 #0x0f 200ms
- PORT #0x0F ;Zeilenkommentar
- WAIT 200ms
- PORT #0x00
- WAIT 200ms
- RJMP :loop
- .macro macro1 output time
- PORT output
- WAIT time
- PORT #0x00
- WAIT time
- .endmacro
|