* Send bytes data. */
| 1410 | * Send bytes data. |
| 1411 | */ |
| 1412 | static void sendBytesData(FILE *out, const uint8_t *bytes, size_t len) |
| 1413 | { |
| 1414 | for (size_t i = 0; i < len; i++) |
| 1415 | fprintf(out, "%u%s", bytes[i], (i+1 < len? ",": "")); |
| 1416 | } |
| 1417 | |
| 1418 | /* |
| 1419 | * Send instructions to load an argument into a register. |
no test coverage detected