#include <iostream>
int main() {
int64_t totlen = 9417;
for(int i=0; totlen>0; i+=1472)
{
auto len = (totlen>1472) ? 1472 : totlen;
std::cout << "copy " << len << " bytes from " << i << " (first byte not accessed: " << (i+len) << ")" << std::endl;
totlen-=1472;
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: