From a7b6498c1396f4a92b0e266fc69029c2678a54ef Mon Sep 17 00:00:00 2001 From: Thomas Hubert Date: Sun, 14 May 2017 22:43:37 +0200 Subject: [PATCH] Tentative de test des boutons mais qui marche pas (dans compteurLettre) --- compteurLettre.txt | 39 ++++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/compteurLettre.txt b/compteurLettre.txt index 787d59e..0f31299 100644 --- a/compteurLettre.txt +++ b/compteurLettre.txt @@ -14,7 +14,7 @@ .equ SPL = 0x3D .def selAfficheur = r19 -.def compteur = r20 +.def tmp = r20 .def seg = r21 .def aff0 = r0 .def aff1 = r1 @@ -31,13 +31,13 @@ .org 0x0080 afficheur: - .DB 0x3F, 0x30, 0x6D, 0x79, 0x72, 0x5B, 0x5F, 0x31, 0x7F, 0x7B, 0x77, 0x40, 0x4c, 0x7c, 0x4f, 0x47, 0x40, 0x76, 0x04, 0x3c, 0x40, 0x0E, 0x37, 0x54, 0x5c, 0x40, 0x40, 0x44, 0x5b, 0x4e, 0x1c, 0x1c, 0x40, 0x40, 0x40, 0x40, 0x63 - ; 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, ° + .DB 0x3F, 0x30, 0x6D, 0x79, 0x72, 0x5B, 0x5F, 0x31, 0x7F, 0x7B, 0x77, 0x40, 0x4c, 0x7c, 0x4f, 0x47, 0x40, 0x76, 0x04, 0x3c, 0x40, 0x0E, 0x37, 0x54, 0x5c, 0x40, 0x40, 0x44, 0x5b, 0x4e, 0x1c, 0x1c, 0x40, 0x40, 0x40, 0x40, 0x63, 0x00 + ; 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, °, space debut: DDRA@IO <- 0xFF - DDRC@IO <- 0xFF + DDRC@IO <- 0x0F TTCR0A@IO <- 0x01 TTCR0B@IO <- 0x03 TMSK0 <- 0x01 @@ -47,11 +47,11 @@ debut: boucle: ; On change de chiffre - aff3 <- aff2 - aff2 <- aff1 - aff1 <- aff0 - inc aff0 - si aff0 > 36 alors aff0 <- 0 + aff0 <- aff1 + aff1 <- aff2 + aff2 <- aff3 + inc aff3 + si aff3 > 37 alors aff3 <- 0 @@ -85,9 +85,22 @@ tmr: lsl selAfficheur si selAfficheur > 8 alors selafficheur <- 1 portc@IO <- 0xff - selAfficheur - si selAfficheur == 1 alors porta@IO <- afficheur@ROM[aff3] - si selAfficheur == 2 alors porta@IO <- afficheur@ROM[aff2] - si selAfficheur == 4 alors porta@IO <- afficheur@ROM[aff1] - si selAfficheur == 8 alors porta@IO <- afficheur@ROM[aff0] + r18 <- pinC@IO + lsr r18 + lsr r18 + lsr r18 + lsr r18 + tmp <- r18 + and tmp, aff3 + si selAfficheur == 1 alors porta@IO <- afficheur@ROM[tmp] + tmp <- r18 + and tmp, aff2 + si selAfficheur == 2 alors porta@IO <- afficheur@ROM[tmp] + tmp <- r18 + and tmp , aff1 + si selAfficheur == 4 alors porta@IO <- afficheur@ROM[tmp] + tmp <- r18 + and tmp, aff0 + si selAfficheur == 8 alors porta@IO <- afficheur@ROM[tmp] sei ret -- libgit2 0.21.2