-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChaserLight3.scala
135 lines (132 loc) · 2.7 KB
/
ChaserLight3.scala
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
* Copyright 2023 Frank Zeyda
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package j1.examples
import j1.miniasm.j1Asm
object ChaserLight3 extends j1Asm {
/* Main Program */
label("start")
push(1)
call("!led")
call("delay")
push(2)
call("!led")
call("delay")
push(4)
call("!led")
call("delay")
push(2)
call("!led")
call("delay")
jmp("start")
/* Subroutines */
/* Write state of LEDS */
label("!led")
push(0x0000)
iostore.x
/* Delay execution by approx. 1s (at 50 MHz clock) */
label("delay")
push(-1)
push(1000)
label("delay.loop")
call("wait.1ms")
plus.^
dup
jpz("delay.exit")
jmp("delay.loop")
label("delay.exit")
drop
drop.x
/* Wait for precisely 1 ms (at 50 MHz clock, call cycle included) */
label("wait.1ms")
push(-1)
push(12498) // 12500 iteration corresponds to 1 ms since
label("wait.loop") // each loop takes 4 cycles == 80 ns at 50 MHz.
plus.^
dup
jpz("wait.exit")
jmp("wait.loop")
label("wait.exit")
noop
drop
drop
exit
done
}
/* Alternative version using bit-shifting operations. */
object AltChaserLight3 extends j1Asm {
/* Main Program */
push(1)
label("start")
dup
call("!led")
call("delay")
call("lshift")
dup
call("!led")
call("delay")
call("lshift")
dup
call("!led")
call("delay")
call("rshift")
dup
call("!led")
call("delay")
call("rshift")
jmp("start")
/* Subroutines */
/* Write state of LEDS */
label("!led")
push(0x0000)
iostore.x
/* Left-shift by one place */
label("lshift")
push(1)
lshift.x
/* Right-shift by one place */
label("rshift")
push(1)
rshift.x
done
/* Delay execution by approx. 1s (at 50 MHz clock) */
label("delay")
push(-1)
push(1000)
label("delay.loop")
call("wait.1ms")
plus.^
dup
jpz("delay.exit")
jmp("delay.loop")
label("delay.exit")
drop
drop.x
/* Wait for precisely 1 ms (at 50 MHz clock, call cycle included) */
label("wait.1ms")
push(-1)
push(12498) // 12500 iteration corresponds to 1 ms since
label("wait.loop") // each loop takes 4 cycles == 80 ns at 50 MHz.
plus.^
dup
jpz("wait.exit")
jmp("wait.loop")
label("wait.exit")
noop
drop
drop
exit
done
}