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