]> cloudbase.mooo.com Git - avrcpm.git/blame - avr/macros.inc
* Software-UART works with 2400 and 4800 Baud.
[avrcpm.git] / avr / macros.inc
CommitLineData
9c15f366
L
1; Commonly used macros
2;
3; Copyright (C) 2010 Leo C.
4;
5; This file is part of avrcpm.
6;
7; avrcpm is free software: you can redistribute it and/or modify it
8; under the terms of the GNU General Public License as published by
9; the Free Software Foundation, either version 3 of the License, or
10; (at your option) any later version.
11;
12; avrcpm is distributed in the hope that it will be useful,
13; but WITHOUT ANY WARRANTY; without even the implied warranty of
14; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15; GNU General Public License for more details.
16;
17; You should have received a copy of the GNU General Public License
18; along with avrcpm. If not, see <http://www.gnu.org/licenses/>.
19;
20; $Id$
21;
22
23;------------------------------------------------
24;
25.macro outm8
26.if @0 > 0x3f
27 sts @0,@1
28.else
29 out @0,@1
30.endif
31.endm
32
33;------------------------------------------------
34;
35.macro inm8
36.if @1 > 0x3f
37 lds @0,@1
38.else
39 in @0,@1
40.endif
41.endm
42
43;------------------------------------------------
44;
45.macro sbism8
46.if @0 > 0x1f
47 in _tmp0,@0
48 sbrs _tmp0,@1
49.else
50 sbis @0,@1
51.endif
52.endm
53
54;------------------------------------------------
55; load 16 bit constant to register pair
56
57.macro ldiw
58 ldi @0l, low(@1)
59 ldi @0h, high(@1)
60.endm
61
e832c81a
L
62;------------------------------------------------
63; load 16 bit direct from data space
64
65.macro ldsw
66 lds @0l, @1
67 lds @0h, @1+1
68.endm
69
70;------------------------------------------------
71; store 16 bit direct to data space
72
73.macro stsw
74 sts @0, @1l
75 sts @0+1,@1h
76.endm
77
9c15f366
L
78;------------------------------------------------
79; add 16 bit constant to register pair
80
81.macro addiw
82 subi @0l, low(-@1)
83 sbci @0h, high(-@1)
84.endm
85
4675c141
L
86;------------------------------------------------
87; sub 16 bit constant from register pair
88
89.macro subiw
90 subi @0l, low(@1)
91 sbci @0h, high(@1)
92.endm
93
9c15f366
L
94;------------------------------------------------
95; Move single bit between two registers
96;
97; bmov dstreg,dstbit,srcreg.srcbit
98
99.macro bmov
100 bst @2,@3
101 bld @0,@1
102.endm
103
4675c141
L
104;------------------------------------------------
105;
106;
107;
108.macro INTERRUPT
109 .set pos_ = PC
110 .org @0 ; vector address
111 .if abs(pos_ - PC) > 2048
112 jmp pos_
113 .else
114 rjmp pos_ ; jump to handler
115 .endif
116 .org pos_ ; restore PC
117.endm
118
b741422e
L
119;------------------------------------------------
120;
121;
122.macro ljmp
123 .if FLASHEND > 0x0fff
f1deeee3
L
124 .ifdef @0
125 .if abs(PC - @0) > 2047
126 jmp @0
127 .else
128 rjmp @0
129 .endif
130 .else
b741422e 131 jmp @0
f1deeee3 132 .endif
b741422e
L
133 .else
134 rjmp @0
135 .endif
136.endm
137
623dd899 138
b741422e
L
139;------------------------------------------------
140;
141;
142.macro lcall
143 .if FLASHEND > 0x0fff
b741422e 144 .ifdef @0
e832c81a 145 .if abs(PC - @0) > 2047
623dd899 146 call @0
b741422e
L
147 .else
148 rcall @0
149 .endif
150 .else
151 call @0
152 .endif
153 .else
154 rcall @0
155 .endif
156.endm
157
9c15f366
L
158;------------------------------------------------
159; Print string.
160; printstring "String"
161
162.macro printstring
623dd899 163 lcall printstr
9c15f366
L
164 .if strlen(@0) % 2
165 .db @0,0
166 .else
167 .db @0,0,0
168 .endif
169.endm
170
171;------------------------------------------------
172; Print newline
173; print cr, lf
174
175.macro printnewline
b741422e 176 lcall printstr
9c15f366
L
177 .db 13,0
178.endm
179
180
181;------------------------------------------------
182; Print a Z80 flag
183; print_zflag F
184; where F is the flag to print
185
186.macro print_zflag
187
188.set S_ = 'S'
189.set Z_ = 'Z'
190.set H_ = 'H'
191.set P_ = 'P'
192.set N_ = 'N'
193.set C_ = 'C'
194
195 ldi temp, ' '
196 sbrc z_flags,ZFL_@0
197 ldi temp, @0_
198 rcall uartputc
199.endm
200
201;------------------------------------------------
202; db_version VMAJOR, VMINOR
203
204.macro db_version
205
206 .set maj1_ = @0 / 10
207 .set maj0_ = @0 % 10
208 .set min1_ = @1 / 10
209 .set min0_ = @1 % 10
210
211 .if maj1_
212 .if min1_
213 .db maj1_+'0',maj0_+'0','.',min1_+'0',min0_+'0',0
214 .else
215 .db maj1_+'0',maj0_+'0','.', min0_+'0',0,0
216 .endif
217 .else
218 .if min1_
219 .db maj0_+'0','.',min1_+'0',min0_+'0',0,0
220 .else
221 .db maj0_+'0','.', min0_+'0',0
222 .endif
223 .endif
224.endm
225
226; vim:set ts=8 noet nowrap
227