Mercurial > public > hwos_code
comparison src/strings.inc @ 189:e79bc535ef9e
ignore un-calibrated sensors even if they become valid
author | heinrichsweikamp |
---|---|
date | Wed, 29 Oct 2014 12:53:01 +0100 |
parents | 11d4fc797f74 |
children | ca4556fb60b9 |
comparison
equal
deleted
inserted
replaced
188:ebc28381f17d | 189:e79bc535ef9e |
---|---|
99 lfsr FSR1, txt | 99 lfsr FSR1, txt |
100 call strcat_text_print | 100 call strcat_text_print |
101 endm | 101 endm |
102 | 102 |
103 ;============================================================================= | 103 ;============================================================================= |
104 ; A shortcut for the macros WIN_TOP + WIN_LEFT + WIN_FONT + WIN_INVERT. | 104 ; A shortcut for the macros WIN_TOP + WIN_LEFT + WIN_FONT. |
105 ; The idea is to replace a 4x6=24 bytes sequence by a more compact 6bytes one. | 105 ; The idea is to replace a 4x6=24 bytes sequence by a more compact 6bytes one. |
106 ; | 106 ; |
107 ; Trashed: TBLPTR, TABLAT, WREG. | 107 ; Trashed: TBLPTR, TABLAT, WREG. |
108 ; Note: This are all bank-safe call. | 108 ; Note: This are all bank-safe call. |
109 extern start_tiny_block | 109 extern start_tiny_block |
110 WIN_TINY macro x, y | 110 WIN_TINY macro x, y |
111 call start_tiny_block | 111 call start_tiny_block |
112 DB x, y | 112 DB x, y |
113 endm | 113 endm |
114 | 114 |
115 extern start_tiny_invert_block | |
116 WIN_TINY_INVERT macro x, y | |
117 call start_tiny_invert_block | |
118 DB x, y | |
119 endm | |
120 | |
121 extern start_small_block | 115 extern start_small_block |
122 WIN_SMALL macro x, y | 116 WIN_SMALL macro x, y |
123 call start_small_block | 117 call start_small_block |
124 DB x, y | |
125 endm | |
126 | |
127 extern start_small_invert_block | |
128 WIN_SMALL_INVERT macro x, y | |
129 call start_small_invert_block | |
130 DB x, y | 118 DB x, y |
131 endm | 119 endm |
132 | 120 |
133 extern start_std_block | 121 extern start_std_block |
134 WIN_STD macro x, y | 122 WIN_STD macro x, y |
135 call start_std_block | 123 call start_std_block |
136 DB x, y | 124 DB x, y |
137 endm | 125 endm |
138 | 126 |
139 extern start_std_invert_block | |
140 WIN_STD_INVERT macro x, y | |
141 call start_std_invert_block | |
142 DB x, y | |
143 endm | |
144 | |
145 extern start_medium_block | 127 extern start_medium_block |
146 WIN_MEDIUM macro x, y | 128 WIN_MEDIUM macro x, y |
147 call start_medium_block | 129 call start_medium_block |
148 DB x, y | |
149 endm | |
150 | |
151 extern start_medium_invert_block | |
152 WIN_MEDIUM_INVERT macro x, y | |
153 call start_medium_invert_block | |
154 DB x, y | 130 DB x, y |
155 endm | 131 endm |
156 | 132 |
157 extern start_large_block | 133 extern start_large_block |
158 WIN_LARGE macro x, y | 134 WIN_LARGE macro x, y |
159 call start_large_block | 135 call start_large_block |
160 DB x, y | 136 DB x, y |
161 endm | 137 endm |
162 | |
163 extern start_large_invert_block | |
164 WIN_LARGE_INVERT macro x, y | |
165 call start_large_invert_block | |
166 DB x, y | |
167 endm | |
168 | 138 |
169 ;============================================================================= | 139 ;============================================================================= |
170 ; Shortcuts for compact display programmings. | 140 ; Shortcuts for compact display programmings. |
171 TEXT_TINY macro x, y, txt | 141 TEXT_TINY macro x, y, txt |
172 WIN_TINY x,y | 142 WIN_TINY x,y |