Changes between Version 17 and Version 18 of doc-assembleur-pic16
- Timestamp:
- Feb 18, 2008, 1:46:58 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc-assembleur-pic16
v17 v18 628 628 = Routines diverses (snippets) = #snippets 629 629 630 == ` ` Attentes actives == #snippets_wait 631 632 * Attente 10ms 633 {{{ 634 wait10ms movlw D'66' ; il n'est pas utile d'initialiser le registre 0x70 635 movwf 0x71 ; attente d'environ 3*256*66*.2 = 10ms 636 decfsz 0x70 637 goto $-1 638 decfsz 0x71 639 goto $-3 640 return 641 }}} 630 642 == ` ` Mathématiques == #snippets_math 631 643