Changes between Version 17 and Version 18 of doc-assembleur-pic16


Ignore:
Timestamp:
Feb 18, 2008, 1:46:58 PM (17 years ago)
Author:
Franck Wajsburt
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc-assembleur-pic16

    v17 v18  
    628628= Routines diverses (snippets) = #snippets
    629629
     630== ` ` Attentes actives == #snippets_wait
     631
     632 * Attente 10ms
     633{{{
     634wait10ms   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}}}
    630642== ` ` Mathématiques == #snippets_math
    631643