Commit 968302e7a86b6ba27c2129ee779fab4dd1236b52
1 parent
a238970b
Améliorations diverses
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
principal.txt
... | ... | @@ -150,7 +150,7 @@ afficherTemperature: |
150 | 150 | afficherHeur: |
151 | 151 | ; Considère le registre compteur comme une heure et l'affiche |
152 | 152 | d3 <- afficheur@ROM[compteur/10] |
153 | - d2 <- afficheur@ROM[compteur-(compteur*10)/10] | 0b10000000 | |
153 | + d2 <- afficheur@ROM[compteur-(compteur/10)*10] | 0b10000000 | |
154 | 154 | d1 <- 0x00 |
155 | 155 | d0 <- 0x00 |
156 | 156 | ret |
... | ... | @@ -160,7 +160,7 @@ afficherMinu: |
160 | 160 | d3 <- 0x00 |
161 | 161 | d2 <- 0b10000000 |
162 | 162 | d1 <- afficheur@ROM[compteur/10] |
163 | - d0 <- afficheur@ROM[compteur-(compteur*10)/10] | |
163 | + d0 <- afficheur@ROM[compteur-(compteur/10)*10] | |
164 | 164 | ret |
165 | 165 | |
166 | 166 | afficherJour: |
... | ... | @@ -330,7 +330,7 @@ etatParaTJourC: |
330 | 330 | tempJour <- compteur |
331 | 331 | jmp etatParaTJourU |
332 | 332 | |
333 | - etatMenuTNuit: | |
333 | +etatMenuTNuit: | |
334 | 334 | etat <- 19 |
335 | 335 | d3 <- 0x54 |
336 | 336 | d2 <- 0x1c |
... | ... | @@ -396,25 +396,25 @@ etatParaHJourC: |
396 | 396 | |
397 | 397 | etatParaHHeur: |
398 | 398 | etat <- 26 |
399 | - compteur <- 0 ; TODO Récupérer le temps | |
399 | + compteur <- t0 | 0b00011111 | |
400 | 400 | call afficherHeur |
401 | 401 | reti |
402 | 402 | |
403 | 403 | etatParaHHeurC: |
404 | 404 | call boundHeur |
405 | - ; TODO Sauvegarde | |
405 | + t0 <- (t0 & 0b11100000) + compteur | |
406 | 406 | call afficherHeur |
407 | 407 | reti |
408 | 408 | |
409 | 409 | etatParaHMinu: |
410 | 410 | etat <- 27 |
411 | - compteur <- 0 ; TODO Récupérer la minute | |
411 | + compteur <- t1 | |
412 | 412 | call afficherMinu |
413 | 413 | reti |
414 | 414 | |
415 | 415 | etatParaHMinuC: |
416 | 416 | call boundMinu |
417 | - ; TODO Sauvegarde | |
417 | + t1 <- compteur | |
418 | 418 | call afficherMinu |
419 | 419 | reti |
420 | 420 | ... | ... |