comparison code_part1/OSTC_code_asm_part1/strings.inc @ 209:cdba979821ee

frame around logbook scale, some more speed improvements new WIN_FRAME_COLOR macro
author heinrichsweikamp
date Sun, 20 Feb 2011 10:59:03 +0100
parents 6a94f96e9cea
children
comparison
equal deleted inserted replaced
208:3b961f17aa3a 209:cdba979821ee
177 WIN_FRAME_STD macro top, bottom, left, right 177 WIN_FRAME_STD macro top, bottom, left, right
178 call box_frame_std 178 call box_frame_std
179 db top, (bottom)-(top)+1, left, (right)-(left)+1 179 db top, (bottom)-(top)+1, left, (right)-(left)+1
180 endm 180 endm
181 181
182 ; Draw a frame with color from WREG (8bits rrrgggbb)
183 WIN_FRAME_COLOR macro top, bottom, left, right
184 call box_frame_color
185 db top, (bottom)-(top)+1, left, (right)-(left)+1
186 endm
182 187
188