This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Declare assembler variable for C source file

Hello,

how to declare the register R1 in my assembly code to R1 in the C source file to be able to use:

C-Program

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
extern void key_board(void);
extern unsigned char R1; // ?
main {
....
if (R1 == 0x03) { ….. }
....
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Assembler-Code

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
NAME KEY_BOARD
TASTEN_PORT EQU P1 ; benuetzter PORT
P_ANZ EQU 03H ; Anzahl Portleitungen
;TASTATUR_MODUS BIT [0] ; Steuerbit fuer Modus (20.0)
EINGAENGE EQU 00010111B ; Maske fuer Tastaturport:
; Tastaturpins = 1
; unbenuetzte Portpins:
; Eingaenge : 1
; Ausgaenge : 0
TASTEN_NUMMER EQU 01H ; Register 1
SPALTEN_ZAEHLER EQU 02H ; 2
ZEILEN_ZAEHLER EQU 03H ; 3
AUSGABE_MASKE EQU 04H ; 4
EINLESE_MASKE EQU 05H ; 5
ZAHLEN EQU 00H
FERTIG EQU 03H
LOESCHEN EQU 05H
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Kind Regards

Juergen B.

0