| 749 | } |
| 750 | |
| 751 | int ihex_bytes_within_range(int begin, int end) |
| 752 | { |
| 753 | int i; |
| 754 | |
| 755 | if (begin < 0 || begin >= MAX_MEMORY_SIZE || |
| 756 | end < 0 || end >= MAX_MEMORY_SIZE) { |
| 757 | return 0; |
| 758 | } |
| 759 | for (i=begin; i<=end; i++) { |
| 760 | if (firmware_mask[i]) return 1; |
| 761 | } |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | void ihex_get_data(int addr, int len, unsigned char *bytes) |
| 766 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…