()
| 388 | buf[1] = 66 |
| 389 | buf[2] = 67 |
| 390 | buf[3] = 68 |
| 391 | buf[4] = 69 |
| 392 | one: u64 = 1 |
| 393 | dst: u8* = &buf[one] |
| 394 | mem.move(dst, buf, 4) |
| 395 | console.putchar(buf[0] as i32) |
| 396 | console.putchar(buf[1] as i32) |
| 397 | console.putchar(buf[2] as i32) |
| 398 | console.putchar(buf[3] as i32) |
| 399 | console.putchar(buf[4] as i32) |
| 400 | return 0 |
| 401 | } |
| 402 | "#, |
| 403 | ); |
| 404 | assert_eq!(uart, "AABCD"); |
| 405 | assert_eq!(exit, Some(0)); |
nothing calls this directly
no test coverage detected