-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.s43
68 lines (60 loc) · 1.63 KB
/
logger.s43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "msp430.h" ; #define controlled include file
MODULE logger
PUBLIC nextLog, saveLog, showCurrentLog
RSEG CSTACK ; pre-declaration of segment
RSEG CODE ; place program in 'CODE' segment
; Log Data
EXTERN log, logPos, logSize, logCurr
;Objetivo: switch to next log
;Precondiciones: ninguna
;Postcondiciones: ninguna
;Autor: Luis Romero-Sevilla
;Fecha: 15/Abril/2021
nextLog:
PUSH R5
MOV.B logPos, R5
MOV.W log(R5), &logCurr
INCD.W &logPos
CMP.B &logSize, &logPos
JZ resetLog
afterNext:
POP R5
ret
;Objetivo: Reset current log position counter
;Precondiciones: ninguna
;Postcondiciones: ninguna
;Autor: Luis Romero-Sevilla
;Fecha: 15/Abril/2021
resetLog:
MOV #0, logPos
JMP afterNext
;Objetivo: Add log to logs array
;Precondiciones: valor a ser insertado debe estar en R8
;Postcondiciones: ninguna
;Autor: Luis Romero-Sevilla
;Fecha: 15/Abril/2021
saveLog:
PUSH R5
PUSH R6
PUSH R7
MOV.W #0, R7
MOV.W log(R7), R5
INCD.W R7
MOV.W log(R7), R6
MOV.W R5, log(R7)
INCD.W R7
MOV.W R6, log(R7)
MOV.W #0, R7
MOV.W R8, log(R7)
POP R7
POP R6
POP R5
ret
;Objetivo: Mostrar Log en pantalla
;Precondiciones: ninguna
;Postcondiciones: ninguna
;Autor: Luis Romero-Sevilla
;Fecha: 15/Abril/2021
showCurrentLog:
ret
END