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