Mercurial > public > hwos_code
comparison src/logbook.asm @ 430:5604cd15c39f
minor
author | heinrichsweikamp |
---|---|
date | Tue, 21 Jun 2016 12:44:19 +0200 |
parents | a5fc007634c5 |
children | 929feb0da4f5 |
comparison
equal
deleted
inserted
replaced
429:4b93354b7738 | 430:5604cd15c39f |
---|---|
908 ;---- Draw Marker square , if any ---------------------------------------- | 908 ;---- Draw Marker square , if any ---------------------------------------- |
909 btfss log_marker_found ; Any marker to draw? | 909 btfss log_marker_found ; Any marker to draw? |
910 bra profile_display_skip_marker ; No | 910 bra profile_display_skip_marker ; No |
911 | 911 |
912 ; 2x2 square | 912 ; 2x2 square |
913 incf apnoe_mins,W | 913 incf apnoe_mins,W ; increase row (Y) |
914 movff WREG,win_top | 914 movff WREG,win_top |
915 movlw .4 | 915 movlw .4 |
916 movff WREG,win_height | 916 movff WREG,win_height |
917 movlw .2 | 917 movlw .2 |
918 movff WREG,win_width | 918 movff WREG,win_width |
919 decf logbook_pixel_x_pos,W | 919 decf logbook_pixel_x_pos,W ; decrease column (X) |
920 movff WREG,win_leftx2 | 920 movff WREG,win_leftx2 |
921 | 921 |
922 movlw color_orange | 922 movlw color_orange |
923 call TFT_set_color | 923 call TFT_set_color |
924 call TFT_box ; Draw 2x2 Box | 924 call TFT_box ; Draw 2x2 Box |