-
Notifications
You must be signed in to change notification settings - Fork 1
/
Garagentorsteuerung.asm
73 lines (70 loc) · 984 Bytes
/
Garagentorsteuerung.asm
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
69
70
71
72
73
;----------------------------------
; garagentor-Steuerung
;----------------------------------
CSEG AT 0H
LJMP Anfang
ORG 100H
; Eingabevektor
EIN1 EQU 20H
START1 EQU EIN1.0
START2 EQU EIN1.1
STOP1 EQU EIN1.2
STOP2 EQU EIN1.3
G_AUF EQU EIN1.5
G_ZU EQU EIN1.6
G_KONT EQU EIN1.7
; Ausgabevektor
AUS3 EQU 21H
M_AUF EQU AUS3.0
M_ZU EQU AUS3.1
HUPE EQU AUS3.7
; Merker
M1 EQU 22H
; INITIALISIERUNG
MOV EIN1, #00H
MOV AUS3, #00H
MOV P1, #0FFH
;--------------------
; SCHLEIFE
;--------------------
Anfang:
MOV EIN1, P1
;--------------------
MOV C, START1
ORL C, START2
ANL C, G_AUF
ORL C, /G_KONT
JNC S1
SETB M_AUF
S1:
MOV C,M_ZU
ORL C, /STOP1
ORL C, /STOP2
ORL C, /G_AUF
JNC S2
CLR M_AUF
S2:
MOV C, START1
ORL C, START2
ANL C, /G_AUF
JNC S3
SETB M_ZU
S3:
MOV C, M_AUF
ORL C, /STOP1
ORL C, /STOP2
ORL C, /G_ZU
ORL C, /G_KONT
JNC S4
CLR M_ZU
S4:
MOV C, M_ZU
Mov HUPE, C
;-------------------
; Ausgabe
;-------------------
MOV P3, AUS3
; SCHLEIFENENDE
LJMP Anfang
;----------------
END